我怎样才能让一些物品永远在列表中?

时间:2017-09-21 03:08:34

标签: android adapter android-viewholder

点击customAutoCompleteTextView时,我想创建一个历史消息列表 我使用BastAdapter制作了红圈部分

Image is here

但我不知道如何使"全部清除" 项目始终可见 ,顺便说一下,我不想在历史记录列表中添加新项目。 我该怎么办?

1 个答案:

答案 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>