TextView внутри TextSwitcher гравитационное дно не будет работать - PullRequest
0 голосов
/ 26 февраля 2019

У меня есть стандартные 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:

При наличии более длинного набора текста он выглядит следующим образом: enter image description here

Когда текст поменьше, он выглядит следующим образом: enter image description here

Я хочу, чтобы TextView был помещен в bottom TextSwitcher - но этого не происходит?

1 Ответ

0 голосов
/ 27 февраля 2019

попытайтесь соответствовать родительской высоте, а также используйте атрибут layout_gravity.

...