为什么 TextView 不向右移动?

Why isn't the TextView moving to the right?

为什么文本没有向右移动?

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBelow="true"
    android:text="happy birthday" />

如果您使用以下代码,您的 TextView 将垂直居中,向右移动。 最好使用 layout_constraint。您的 UI 会响应。

    <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" />

我想确认一下,我的猜测是您提供的代码是 RelativeLayout 的一部分。我建议你就这个问题提供更多的背景信息,它是不是很不完整,很难回答一个不完整的问题。您提供的 TextView 应该可以工作,但我们需要更清晰的上下文(更多代码)才能了解问题。

快速猜测是 TextView 的父对象(RelativeLayout?)不正确(宽度未设置为与全屏匹配?)。我只使用 thins 代码进行测试,它似乎可以满足您的要求;

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBelow="true"
        android:text="happy birthday"/>
</RelativeLayout>

如果您的 RelativeLayout 在另一个容器中,请确保其大小符合您的要求。