我的列表视图的内容隐藏在按钮后面,如下所示:
xml文件为:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="top"
>
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"
/>
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
<Button
android:text="Send"
android:id="@+id/Button"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="addItems"
>
</Button>
<EditText
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_toLeftOf="@id/Button"
android:layout_height="wrap_content"
>
</EditText>
</RelativeLayout>
</RelativeLayout>
每行的TextView如下:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content
android:layout_gravity="right"
android:gravity="right"
android:textSize="20sp"
/>
我该怎么做才能正确对齐(如按钮上方)? 此外,当listView只有一个或两个条目,并且打开键盘键入时,整个视图会发生变化吗?我该如何解决这个问题呢?提前致谢
答案 0 :(得分:2)
清理并修改了一些代码。也许这就是你要找的东西。如果有效,请告诉我。干杯!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:id="@+id/Button"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:onClick="addItems"
android:text="Send" />
<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_toLeftOf="@id/Button" />
</RelativeLayout>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/InnerRelativeLayout" />
</RelativeLayout>
答案 1 :(得分:1)
将android:layout_above="@+id/InnerRelativeLayout"
添加到您的ListView
。
RelativeLayout 子视图指定相对于父视图或彼此的位置(由ID指定)。因此,您可以通过右边框对齐两个元素,或者使一个元素位于另一个元素下方,在屏幕中居中,向左居中,依此类推。默认情况下,所有子视图都在布局的左上角绘制,因此您必须使用 RelativeLayout.LayoutParams 中提供的各种布局属性来定义每个视图的位置。
要将您的InnerRelativeLayout
布局置于顶部,请将android:layout_alignParentTop="true"
添加到InnerRelativeLayout
并移除android:layout_alignParentBottom="true"
更新:设置布局,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/Beige "
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" >
<Button
android:id="@+id/Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:onClick="addItems"
android:text="Send" >
</Button>
<EditText
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/Button"
android:hint="Enter text" >
</EditText>
</RelativeLayout>
<ListView
android:id="@+id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/InnerRelativeLayout"
android:drawSelectorOnTop="false" />
</RelativeLayout>
<强>输出:强>
答案 2 :(得分:0)
在列表视图中使用android:layout_above="@+id/InnerRelativeLayout"
答案 3 :(得分:0)
将外部RelativeLayout
变为LinearLayout
,方向垂直。然后,对于ListView
,将layout_height设置为0dp,将layout_weight设置为1. ListView
将填充LinearLayout
中的所有剩余空格,而不会重叠其他视图。
此外,停止使用fill_parent
,它已被弃用,您应该使用match_parent
。