所以数字和文本应该是2个不同的TextView。当我将它们放在RelativeLayout中时,我得到下面的图像:
因此,一旦第二个TextView太长而无法放在一行上,它就不会从头开始。那我怎么做到呢?
这里是代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:id="@+id/relativeLayout">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:text="5900"
android:layout_alignParentEnd="false"
android:elegantTextHeight="false" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:layout_toRightOf="@id/editText"
android:text="This is the text associated with the previous number. This is the required format."
</RelativeLayout>