Android(具有垂直居中控件的布局)

【Android(具有垂直居中控件的布局)】古人已用三冬足,年少今开万卷余。这篇文章主要讲述Android:具有垂直居中控件的布局相关的知识,希望能为你提供帮助。

  1. < ?xml version=" 1.0" encoding=" utf-8" ?>
  2. < RelativeLayout xmlns:android=" http://schemas.android.com/apk/res/android"
  3. android:layout_width=" match_parent" android:layout_height=" match_parent"
  4. android:orientation=" vertical" >
  5.  
  6. < ProgressBar
  7. android:layout_centerInParent=" true"
  8. style=" @android:style/Widget.ProgressBar.Horizontal"
  9. android:id=" @+id/progressBar"
  10. android:layout_width=" fill_parent"
  11. android:layout_height=" 60sp"
  12. android:layout_margin=" 10sp"
  13. > < /ProgressBar>
  14. < TextView android:layout_below=" @id/progressBar"
  15. android:text=" XX% complete" android:gravity=" center" android:id=" @+id/status"
  16. android:layout_width=" fill_parent" android:layout_height=" wrap_content" > < /TextView>
  17.  
  18. < /RelativeLayout>


    推荐阅读