Android - 布局问题 - Textviews顶部中心和底部中心

时间:2010-07-29 22:10:47

标签: android layout center textview

我有一个布局问题。

假设我的屏幕底部出现了RelativeLayout。在这里,我想在中心添加2个文本视图,一个在顶部中心,一个在底部中心。

|--------------------------|
|          Text1           |
|          Text2           |
|--------------------------|

类似的东西: - )

1 个答案:

答案 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>