在RelativeLayout中防止视图重叠

时间:2013-08-29 19:05:45

标签: android android-layout

我正在尝试开发一个Android应用程序,但我在GUI设计方面遇到了一些问题。屏幕截图的以下部分是我的问题(红色和蓝色线由Android调试选项生成)。

my problem

这是代码:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/caption"
    android:layout_below="@+id/caption" >

    <ImageButton
        android:id="@+id/button_edit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:src="@drawable/content_edit"
        style="?android:attr/borderlessButtonStyle" />

    <TextView
        android:id="@+id/myText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:text="@string/num_placeholder"
        android:textAppearance="?android:attr/textAppearanceLarge" />


</RelativeLayout>

如您所见,TextView myText与ImageButton button_edit重叠。 一个简单的解决方案是使用LinearLayout而不是RelativeLayout。问题是:

  1. 我需要右侧的编辑按钮
  2. 我需要文本来填充布局的其余部分(显然在编辑按钮的左侧)
  3. 我还尝试将myText的layout_width设置为'fill_parent',但它会填充编辑按钮左侧的整个屏幕。

    预期的行为将是myText以增加其高度(成为两行TextView)而不是重叠'button_edit'

    任何人都可以帮助我吗?感谢

2 个答案:

答案 0 :(得分:19)

在TextView布局中使用layout_toLeftOf

像这样:

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/caption"
android:layout_below="@+id/caption" >

<ImageButton
    android:id="@+id/button_edit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_alignParentRight="true"
    android:src="@drawable/content_edit"
    style="?android:attr/borderlessButtonStyle" />

<TextView
    android:id="@+id/myText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:text="@string/num_placeholder"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:layout_toLeftOf="@+id/button_edit" />

答案 1 :(得分:0)

另一种方法是使用android:layout_toEndOf属性

<ImageButton
    android:id="@+id/button_edit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_alignParentRight="true"
    android:src="@drawable/content_edit"
    style="?android:attr/borderlessButtonStyle"
    android:layout_toEndOf="@+id/myText" />

<TextView
    android:id="@+id/myText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:text="@string/num_placeholder"
    android:textAppearance="?android:attr/textAppearanceLarge" />