为什么TextView不向右移动?

问题描述 投票:1回答:1

为什么文本不向右移动?

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBelow="true"
    android:text="happy birthday" />
android android-layout android-xml
1个回答
0
投票

如果使用以下代码,您的TextView将垂直居中,并移至右侧。最好使用layout_constraint。您的用户界面将响应。

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:text="happy birthday" />
© www.soinside.com 2019 - 2024. All rights reserved.