我有一个布局问题。
假设我的屏幕底部出现了RelativeLayout。在这里,我想在中心添加2个文本视图,一个在顶部中心,一个在底部中心。
|--------------------------|
| Text1 |
| Text2 |
|--------------------------|
类似的东西: - )
答案 0 :(得分:1)
这对你有用:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal">
<TextView android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text 1"/>
<TextView android:id="@+id/text2"
android:layout_below="@id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text 2"/>
</RelativeLayout>