我有自定义ListView
+(Control for sending messages
)布局,用于发送消息和显示聊天。问题是ListView
的最后一个单元格不完全可见(就像写入和发送消息的蓝色控件后面一样):
我已经在Manifest
文件中添加了这个:
android:windowSoftInputMode="stateVisible|adjustResize"
这是我的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="match_parent" >
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:id="@+id/footer_layout"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="@color/color_custom_light_blue"
android:orientation="horizontal" >
<EditText
android:id="@+id/editText"
android:layout_width="250dp"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:background="@drawable/rounded_edittext"
android:hint="@string/message_list_edittext_hint"
android:lines="2"
android:padding="5dp"
android:textSize="17sp"
android:textStyle="normal" />
<ImageButton
android:id="@+id/clearButton"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_centerVertical="true"
android:layout_gravity="right|center_vertical"
android:layout_margin="3dp"
android:layout_toRightOf="@id/editText"
android:background="@drawable/clear_button_selector"
android:contentDescription="@string/clear_button_content_description"
android:onClick="clearLetterClicked" />
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:layout_toRightOf="@id/clearButton"
android:onClick="sendClicked"
android:text="@string/message_list_edittext_send"
android:textColor="@color/white"
android:textSize="17sp" />
</RelativeLayout>
</RelativeLayout>
因此,当我使用聊天消息滚动到ListView
的末尾时,我希望最后一个单元格可见。
答案 0 :(得分:2)
您应该将自己的页脚布局定义为ListView AFTER
容器是RelativeLayout,因此您可以将ListVew ABOVE 设置为页脚布局。
同时将其高度设置为 FILL_PARENT
所以,它不会被它覆盖。它会在页脚开始之前停止增长
轻松修复,诀窍。