单个TextView中的多个TextView

时间:2016-03-20 20:35:48

标签: android android-edittext

我正在尝试实现以下布局。 enter image description here

所以数字和文本应该是2个不同的TextView。当我将它们放在RelativeLayout中时,我得到下面的图像: enter image description here

因此,一旦第二个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>

0 个答案:

没有答案