将视图置于另一个视图中心

时间:2015-09-04 03:29:20

标签: android view

下面的代码并未将视图对象垂直居中于TextView,但它位于顶部。

如何让它垂直居中?

谢谢。

<?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="wrap_content">

    <TextView
        android:id="@+id/label_TV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="start"
        android:text="@string/station" />

    <View
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:layout_gravity="center_vertical"
        android:layout_toRightOf="@id/label_TV"
        android:layout_toEndOf="@id/label_TV"
        android:background="@color/divider" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

试试这个:

已编辑

<?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="wrap_content">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="AAA" />

<TextView
    android:id="@+id/label_TV"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:text="Line" />

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:layout_centerVertical="true"
    android:layout_toEndOf="@id/label_TV"
    android:background="@color/line_divider" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_below="@+id/label_TV"
    android:text="BBB" />

</RelativeLayout>

基本上你只需要设置父布局的高度以匹配父级,然后使用layout_centverVertical =“true”代替。

答案 1 :(得分:0)

试试这个,

<?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">
    <TextView
    android:id="@+id/label_TV"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centverVertical="true"
    android:layout_gravity="start"
    android:text="@string/station" />

    <View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:layout_centverVertical="true"
    android:layout_toRightOf="@id/label_TV"
    android:layout_toEndOf="@id/label_TV"
    android:background="@color/divider" />
</RelativeLayout>