我想知道如何在不硬编码 XML 中的宽度的情况下TextView
在几行上显示其内容。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="false"
android:text="Long multiline text"/>
<TextView
android:textColor="@color/text_color"
android:layout_width="130dp"
android:layout_height="wrap_content"
/>
</LinearLayout>
欢迎任何想法。
编辑:我的问题是,当文本超过设置的宽度时(因为它到达屏幕的末尾),部分文本不会显示。我希望文本分成两行