在Android中垂直居中视图

时间:2009-11-04 22:13:24

标签: android user-interface layout

我正在尝试使用以下布局在屏幕上垂直居中View

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <EditText 
        android:text="example text"  
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical" />
</LinearLayout>

然而它不起作用。 EditText仍位于屏幕顶部。有人可以解释我在这里做错了吗?

注意:如果我将center_horizontal添加到layout_gravity属性,则会将其水平居中,但仍然不会垂直居中。

更新:在父作品上使用android:gravity="center_vertical"。我仍然不明白为什么android:layout_gravity="center_vertical"对孩子不起作用。

3 个答案:

答案 0 :(得分:25)

我在Google群组中跟踪答案,here it is©Romain Guy:

  

好吧,首先RelativeLayout忽略layout_gravity。然后你需要知道引力意味着“将重力应用于此视图的内容”,而layout_gravity意味着“将重力应用于其父视图中的此视图”。因此,在TextView上,gravity将在TextView的边界内对齐文本,而layout_gravity将在其父级的边界内对齐TextView。

答案 1 :(得分:0)

简单快捷的答案是将android:gravity="center_vertical"添加到父(包含)视图中。对于那些想知道原因的人,请参阅@Bostone的答案。

答案 2 :(得分:0)

有三种方法可以垂直居中。我建议现在使用ConstraintLayout。

1。 Horizo​​ntal LinearLayout

键是orientation =“horizo​​ntal”。您不能水平居中以确定方向=“垂直”。

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="example text"/>

</LinearLayout>

2。 RelativeLayout的

使用RelativeLayout,您可以使用layout_centerVertical="true"

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:text="example text"/>

</RelativeLayout> 

3。 ConstraintLayout

最简单的向您展示这一个。

enter image description here

这是XML。它仍然需要添加水平约束。

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.constraintlayout.MainActivity"
    tools:layout_editor_absoluteX="0dp"
    tools:layout_editor_absoluteY="81dp">

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginTop="8dp"
        android:text="example text"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="16dp"/>

</android.support.constraint.ConstraintLayout>