[编辑]
鉴于:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="200dip"
android:background="#ff00ff00" />
<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="200dip"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="#ffff0000" />
</RelativeLayout>
如何在小屏幕上避免text1和text2之间的重叠。重要的是:
如果可能没有重叠,text2应该准确显示在屏幕的垂直中心
如果有重叠,text2应该向下移动一点并直接显示在text1下面
答案 0 :(得分:1)
将android:gravity="center_vertical"
添加到子LinearLayout。这将使它成为父母的中心。
更改为button_container的android:layout_height="fill_parent"
。这将使其填充父级的剩余高度。更改后,您的代码看起来像这样:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffff0000"
android:text="TextView" />
<LinearLayout
android:id="@+id/button_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />
</LinearLayout>