TextSwitcher重力底部内的TextView无法正常工作

时间:2019-02-26 05:03:54

标签: java android layout textview

我有一个标准的TextViewTextSwitcher

TextView:

<android.support.v7.widget.AppCompatTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:textColor="#3F51B5"
android:textSize="40sp"
android:gravity="bottom|center_horizontal"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:background="@android:color/black">

TextSwitcher:

<TextSwitcher
                    android:id="@+id/questionTextSwitcher"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@android:color/white"/>

TextView的文本会动态更改,有时文本是几行。

黑色背景为TextView,白色为TextSwitcher

如果设置了更长的文本,则如下所示: enter image description here

当文本较小时,它看起来像这样: enter image description here

我希望将TextView放置在bottom的{​​{1}}处-但这没有发生吗?

1 个答案:

答案 0 :(得分:0)

尝试匹配父级高度,并使用layout_gravity属性。