У меня есть стандартные TextView
и TextSwitcher
:
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
:
При наличии более длинного набора текста он выглядит следующим образом:
Когда текст поменьше, он выглядит следующим образом:
Я хочу, чтобы TextView
был помещен в bottom
TextSwitcher
- но этого не происходит?