gpt4 book ai didi

android - 最后一个单元格在自定义 Android ListView 布局中不可见

转载 作者:行者123 更新时间:2023-11-29 00:23:59 25 4
gpt4 key购买 nike

我有一个自定义的 ListView + (Control for sending messages) 布局用于发送消息和显示聊天。问题是 ListView 的最后一个单元格不完全可见(它就像在用于编写和发送消息的蓝色控件后面):

enter image description here

我已经将此添加到我的 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 末尾时,我希望最后一个单元格可见。

最佳答案

您应该在页脚布局之后定义您的 ListView。
容器是一个 RelativeLayout,因此您可以设置 ListVew ABOVE 页脚布局。
同时将其高度设置为 FILL_PARENT
所以,它不会被它覆盖。它会在页脚开始之前停止增长。
轻松修复,有诀窍。

关于android - 最后一个单元格在自定义 Android ListView 布局中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21098342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com