给每个人打气。
当我碰到一个重叠的问题时,我正在研究一个简单的自定义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篇关于相对布局重叠的帖子,但似乎没什么用。
答案 0 :(得分:1)
将android:layout_toRightOf =“@ id / label”添加到您的编辑文本中。这将使它始终出现在标签的右侧