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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>

以上是关于Android:具有垂直居中控件的布局的主要内容,如果未能解决你的问题,请参考以下文章

android 代码中设置控件的垂直居中和两个控件之间的距离。

android 代码中设置控件的垂直居中和两个控件之间的距离。

容器内浮动元素(导航控件)的垂直居中

android,线性布局1,里面嵌套线性布局2(垂直排列),想让2在1里是垂直居中的,怎么搞?

android相对布局中控件的常用属性

在Android中垂直居中视图