另一个文本视图的内联文本视图

时间:2018-12-17 05:36:06

标签: android android-studio textview

我有一个带有段落的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>

This is the snapshot

2 个答案:

答案 0 :(得分:0)

使用Domain True在LinearLayout中添加方向。

android:orientation="vertical"

答案 1 :(得分:0)

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>