Встроенный текстовый вид другого текстового представления - PullRequest
0 голосов
/ 17 декабря 2018

У меня есть TextView с абзацем и внутри абзаца, я хочу добавить еще один TextView, для которого я реализую onClickListner, чтобы добавить небольшой текст от пользователя.Но когда 1-й текстовый вид достигает конца экрана, второй макет исчезает.

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="when this content reaches the end of the screen, the text view next to it disappears"
        android:textSize="@dimen/textSize"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="{Tap to enter Recipient's name}"
        android:textSize="@dimen/textSize"
        />

</LinearLayout>

Это снимок

Ответы [ 2 ]

0 голосов
/ 17 декабря 2018

enter image description here попробуйте этот код

<LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <TextView
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="when this content reaches the end of the screen, the text view next to it disappears"
            android:textSize="24dp"
    />
    <TextView
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="{Tap to enter Recipient's name}"
            android:textSize="24dp"
    />
</LinearLayout>
0 голосов
/ 17 декабря 2018

Добавьте ориентацию в LinearLayout с помощью android:orientation="vertical".

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="when this content reaches the end of the screen, the text view next to it disappears" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="{Tap to enter Recipient's name}" />

</LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...