<br/>在android xml标签

时间:2016-06-28 12:28:28

标签: android html xml

我已经开始在Android Studio中使用xml,主要是RelativeLayout。然后,我知道在HTML中,当我使用像p或按钮这样的标签时,我想要,例如,按钮在p下,我这样做:

<p>Hello</p><br><button value="World"></button>

然后,我希望这个结果有2个TextView。 这是我的XML代码:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignTop="@+id/scrollView"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="Large Text" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="Large Text" />


    </RelativeLayout>

我不想将TextView放在另一个TextView下,因为TEXTVIEW不能有ID。

0 个答案:

没有答案