Android:具有垂直居中控件的布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:具有垂直居中控件的布局相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <ProgressBar android:layout_centerInParent="true" style="@android:style/Widget.ProgressBar.Horizontal" android:id="@+id/progressBar" android:layout_width="fill_parent" android:layout_height="60sp" android:layout_margin="10sp" ></ProgressBar> <TextView android:layout_below="@id/progressBar" android:text="XX% complete" android:gravity="center" android:id="@+id/status" android:layout_width="fill_parent" android:layout_height="wrap_content"></TextView> </RelativeLayout>
以上是关于Android:具有垂直居中控件的布局的主要内容,如果未能解决你的问题,请参考以下文章
android 代码中设置控件的垂直居中和两个控件之间的距离。
android 代码中设置控件的垂直居中和两个控件之间的距离。