点击customAutoCompleteTextView
时,我想创建一个历史消息列表
我使用BastAdapter
制作了红圈部分
但我不知道如何使"全部清除" 项目始终可见 ,顺便说一下,我不想在历史记录列表中添加新项目。 我该怎么办?
答案 0 :(得分:0)
试试这个:
<?xml version="1.0" encoding="utf-8"?><!-- File created by SkillsOn -->
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<!--This could be anything that shows your Message list-->
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_below="@+id/clearAll"/>
<!--This is clearAll button and is always visible-->
<Button
android:id="@+id/clearAll"
android:text="Clear all"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"/>
</RelativeLayout>