我有一个带有段落的TextView,并且在段落的内部,我想添加另一个TextView,在该TextView上将实现onClickListner来向用户添加小文本。但是,当第一个文本视图到达屏幕末端时,第二个布局消失了。
<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>
答案 0 :(得分:0)
使用Domain True
在LinearLayout中添加方向。
android:orientation="vertical"
答案 1 :(得分:0)
<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>