centerVertical不在布局中工作

时间:2018-06-17 10:13:35

标签: android

here are the screenshots 在这里,当我使用layout_centerHorizo​​ntal它完美的工作,但每当我使用layout_centerVertical它不工作。我怎么能解决这个问题?

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

    <TextView
        android:text="Have a nice day"
        android:layout_centerHorizontal="true"
        android:textColor="#FFFFFF"
        android:textSize="25sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

你应该尝试这个,它适用于Android工作室,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="match_parent"
    android:background="#FF4081">

    <TextView
        android:text="Have a nice day"
        android:textColor="#FFFFFF"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:textSize="25sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

</RelativeLayout>