我已经开始在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。