У меня есть 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>
Это снимок