79

我想在屏幕中央放置一个布局。

4

10 回答 10

156

步骤#1:将您想要的任何内容以全屏形式包裹在屏幕中央RelativeLayout

步骤#2:为该子视图(您希望在 中居中的那个RelativeLayoutandroid:layout_centerInParent="true"赋予属性。

于 2009-10-01T01:56:13.373 回答
31

您可以通过使用 XML 属性 android:layout_gravity 将居中应用于任何视图,包括布局。您可能希望给它值“中心”。

您可以在此处找到此选项的可能值的参考:http: //developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html#attr_android :layout_gravity

于 2009-09-30T19:06:29.810 回答
19
<?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>
于 2010-05-14T16:54:49.633 回答
15

我能够使用

android:layout_centerHorizontal="true" 

android:layout_centerVertical="true" 

参数。

于 2013-05-06T06:25:30.257 回答
6

如果要居中一个视图,请使用此视图。在这种情况下,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"
/>
于 2012-02-27T10:45:55.640 回答
6

更新答案:约束布局

看来Android现在的趋势是使用约束布局。尽管使用 a 使视图居中很简单RelativeLayout(如其他答案所示),但对于更复杂ConstraintLayout的布局,它比 更强大。RelativeLayout所以值得学习现在怎么做。

要使视图居中,只需将手柄拖动到父级的所有四个边。

在此处输入图像描述

于 2017-09-19T09:13:55.677 回答
3

它适用于该代码有时需要这两个属性

android:layout_gravity="center"
android:layout_centerHorizontal="true"
于 2017-01-11T04:53:00.027 回答
2

将 android:layout_centerInParent="true" 添加到要在 RelativeLayout 中居中的元素

于 2015-12-10T11:17:58.540 回答
2

使用约束布局。这是一个根据父屏幕的宽度和高度居中视图的示例:

<?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'
}

在此处输入图像描述

于 2018-10-31T17:32:29.243 回答
0

我使用 android:layout_centerInParent="true" 并且它有效

于 2020-01-11T17:45:37.663 回答