0

祝大家好运。

当我遇到一个重叠的问题时,我正在研究一个简单的自定义 ArrayAdapter。

这是我的布局的 xml:

<?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="wrap_content" >

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:text="@+id/label" />

    <EditText
        android:id="@+id/editText"
        android:hint="0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="10dp">
    </EditText>

</RelativeLayout>

问题是,如果标签太长,它会与 edittext 元素重叠。

我也尝试过使用带有权重的水平布局,但是当标签太长时,edittext 会超出屏幕。

我已经阅读了 6 篇关于相对布局重叠的帖子,但似乎没有任何效果。

4

1 回答 1

1

将 android:layout_toRightOf="@id/label" 添加到您的编辑文本中。这将使其始终出现在标签的右侧

于 2013-02-11T18:48:51.563 回答