我想在屏幕中央放置一个布局。
10 回答
步骤#1:将您想要的任何内容以全屏形式包裹在屏幕中央RelativeLayout
。
步骤#2:为该子视图(您希望在 中居中的那个RelativeLayout
)android:layout_centerInParent="true"
赋予属性。
您可以通过使用 XML 属性 android:layout_gravity 将居中应用于任何视图,包括布局。您可能希望给它值“中心”。
您可以在此处找到此选项的可能值的参考:http: //developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html#attr_android :layout_gravity
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center">
<ProgressBar
android:id="@+id/ProgressBar01"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_height="wrap_content"></ProgressBar>
<TextView
android:layout_below="@id/ProgressBar01"
android:text="@string/please_wait_authenticating"
android:id="@+id/txtText"
android:paddingTop="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</RelativeLayout>
我能够使用
android:layout_centerHorizontal="true"
和
android:layout_centerVertical="true"
参数。
如果要居中一个视图,请使用此视图。在这种情况下,TextView 必须是 XML 中最底层的视图,因为它的 layout_height 是 match_parent。
<TextView
android:id="@+id/tv_to_be_centered"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:gravity="center"
android:text="Some text"
/>
更新答案:约束布局
看来Android现在的趋势是使用约束布局。尽管使用 a 使视图居中很简单RelativeLayout
(如其他答案所示),但对于更复杂ConstraintLayout
的布局,它比 更强大。RelativeLayout
所以值得学习现在怎么做。
要使视图居中,只需将手柄拖动到父级的所有四个边。
它适用于该代码有时需要这两个属性
android:layout_gravity="center"
android:layout_centerHorizontal="true"
将 android:layout_centerInParent="true" 添加到要在 RelativeLayout 中居中的元素
使用约束布局。这是一个根据父屏幕的宽度和高度居中视图的示例:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#FF00FF"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHeight_percent=".6"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent=".4"></LinearLayout>
</android.support.constraint.ConstraintLayout>
您可能需要更改 gradle 以获得最新版本的 ConstraintLayout:
dependencies {
...
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}
我使用 android:layout_centerInParent="true" 并且它有效