[Android]greendao实现搜索历史功能

使用greendao实现搜索历史功能

ezgif-1-378e749b52.gif
device-2017-08-31-103330.png
之前封装sqlite实现过这功能,不过原生封装使用sql语句,而且greendao功能更强大(对不会sql的我来说更方便写),So...

PRE 依赖greendao

greendao.md

WARMING:
methodscount.com.png

greendao实体

@Entity
public class SearchHistory {
    @Id(autoincrement = true) //自增主键
    private Long id;
    @Unique // 搜索记录(唯一)
    private String name;
}
build gradle | make project(ctrl + F9),自动生成代码

public class MyApp extends Application {
    private static MyApp instance;

    private static DaoSession daoSession;

    public static MyApp getInstance() {
        return instance;
    }

    public static DaoSession getDaoInstant() {
        return daoSession;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
        setupDatabase("database.db");
    }

    /**
     * 配置数据库
     */
    private void setupDatabase(String name) {
        //创建数据库
        DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(this, name, null);
        //获取可写数据库
        SQLiteDatabase db = helper.getWritableDatabase();
        //获取数据库对象
        DaoMaster daoMaster = new DaoMaster(db);
        //获取Dao对象管理者
        daoSession = daoMaster.newSession();
    }
}
public class SearchHistoryDao {

    /**
     * 添加数据
     *
     * @param searchHistory
     */
    public static void insertHistory(SearchHistory searchHistory) {
        MyApp.getDaoInstant().getSearchHistoryDao().insertOrReplace(searchHistory);
    }

    /**
     * 删除数据
     *
     * @param searchHistory
     */
    public static void deleteHistory(SearchHistory searchHistory) {
        MyApp.getDaoInstant().getSearchHistoryDao().delete(searchHistory);
    }

    /**
     * 查询全部数据
     *
     * @return List<SearchHistory>
     */
    public static List<SearchHistory> queryAll() {
        return MyApp.getDaoInstant().getSearchHistoryDao().loadAll();
    }

    /**
     * 清空数据
     */
    public static void clearAll() {
        MyApp.getDaoInstant().getSearchHistoryDao().deleteAll();
    }
}

详细代码方便以后需要copy

xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#1E8AE8">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:layout_margin="8dp"
            android:background="@android:color/white"
            android:gravity="center_vertical">

            <ImageView
                android:id="@+id/btn_back"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="6dp"
                android:layout_marginRight="6dp"
                android:padding="6dp"
                android:src="@drawable/ic_arrow_left"
                android:tint="@android:color/darker_gray" />

            <EditText
                android:id="@+id/edit_search"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@android:color/white"
                android:hint="搜索知乎内容"
                android:imeOptions="actionSearch"
                android:inputType="text"
                android:maxLines="1" />

            <ImageView
                android:id="@+id/btn_searchdelete"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:paddingLeft="6dp"
                android:paddingRight="6dp"
                android:src="@drawable/ic_delete"
                android:tint="@android:color/darker_gray"
                android:visibility="gone"
                tools:visibility="visible" />
        </LinearLayout>
    </LinearLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <android.support.v7.widget.CardView
                android:id="@+id/recommandsearch"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="48dp"
                    android:gravity="center_vertical">

                    <ImageView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="6dp"
                        android:padding="6dp"
                        android:src="@drawable/ic_search" />

                    <TextView
                        android:id="@+id/tv_recommandsearch"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_marginLeft="16dp"
                        android:gravity="center_vertical"
                        tools:text="演技能烂到什么程度"
                        android:textColor="@android:color/black"
                        android:textSize="16dp" />
                </LinearLayout>
            </android.support.v7.widget.CardView>


            <android.support.v7.widget.CardView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/listview_search_history"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content" />

                    <TextView
                        android:id="@+id/btn_clearall"
                        android:layout_width="match_parent"
                        android:layout_height="48dp"
                        android:gravity="center"
                        android:text="清除历史记录"
                        android:textColor="@android:color/holo_blue_light" />
                </LinearLayout>
            </android.support.v7.widget.CardView>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</LinearLayout>

item

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:layout_marginLeft="12dp"
        android:layout_marginRight="12dp">

        <ImageView
            android:id="@+id/icon"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_centerVertical="true"
            android:paddingRight="6dp"
            android:src="@drawable/ic_history"
            android:tint="@android:color/darker_gray" />

        <TextView
            android:id="@+id/tv_recommandsearch"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="8dp"
            android:layout_toLeftOf="@id/btn_delete"
            android:layout_toRightOf="@id/icon"
            android:ellipsize="end"
            android:gravity="center_vertical"
            android:lines="1"
            android:text="演技能烂到什么程度"
            android:textSize="16dp" />

        <ImageView
            android:id="@+id/btn_delete"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:paddingLeft="6dp"
            android:src="@drawable/ic_delete"
            android:tint="@android:color/darker_gray" />

        <View
            android:layout_width="match_parent"
            android:layout_height="0.5dp"
            android:layout_alignParentBottom="true"
            android:background="@android:color/black" />
    </RelativeLayout>
</LinearLayout>
所有ic_的图片为android studio Vector Asset

Adapter

public class SearchAdapter extends RecyclerView.Adapter<SearchAdapter.ViewHolder> {
    private Context context;
    private List<SearchHistory> list;

    public SearchAdapter(Context context, List<SearchHistory> list) {
        this.context = context;
        this.list = list;
    }

    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        return new ViewHolder(LayoutInflater.from(context).inflate(R.layout.item_search_history, parent, false));
    }

    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        holder.tvRecommandsearch.setText(list.get(position).getName());
        holder.btnDelete.setOnClickListener(view -> deleteListener.OnDelete(position));
        holder.itemView.setOnClickListener(view -> itemClickListener.OnItemClick(position));
    }

    @Override
    public int getItemCount() {
        return list.size();
    }

    class ViewHolder extends RecyclerView.ViewHolder {
        @BindView(R.id.tv_recommandsearch)
        TextView tvRecommandsearch;
        @BindView(R.id.btn_delete)
        ImageView btnDelete;

        ViewHolder(View itemView) {
            super(itemView);
            ButterKnife.bind(this, itemView);
        }
    }

    private OnDeleteListener deleteListener;
    private OnItemClickListener itemClickListener;

    public interface OnDeleteListener {
        void OnDelete(int position);
    }

    public interface OnItemClickListener {
        void OnItemClick(int position);
    }

    public void setOnDeleteListener(OnDeleteListener deleteListener) {
        this.deleteListener = deleteListener;
    }

    public void setOnItemClickListener(OnItemClickListener itemClickListener) {
        this.itemClickListener = itemClickListener;
    }
}

Activity

public class SearchActivity extends BaseActivity {
    @BindView(R.id.btn_back)
    ImageView btnBack;
    @BindView(R.id.edit_search)
    EditText editSearch;
    @BindView(R.id.btn_searchdelete)
    ImageView btnSearchdelete;
    @BindView(R.id.tv_recommandsearch)
    TextView tvRecommandsearch;
    @BindView(R.id.recommandsearch)
    CardView recommandSearch;
    @BindView(R.id.listview_search_history)
    RecyclerView listview;
    @BindView(R.id.btn_clearall)
    TextView btnClearall;

    private final int DELETEONE = 0X001;
    private final int DELETEALL = 0X002;

    private SearchAdapter adapter;
    private List<SearchHistory> list;

    @Override
    protected void bindViews() {
        setContentView(R.layout.activity_search);
    }

    @Override
    protected void initView() {

    }

    @Override
    protected void initData() {
        tvRecommandsearch.setText(getIntent().getStringExtra("recommandsearch"));
        recommandSearch.setOnClickListener(view -> {
            editSearch.setText(tvRecommandsearch.getText());
            insertHistory();
        });
        list = new ArrayList<>();
        adapter = new SearchAdapter(this, list);
        listview.setLayoutManager(new LinearLayoutManager(this));
        listview.setAdapter(adapter);
        adapter.setOnDeleteListener(position -> deleteHistory(DELETEONE, position));
        adapter.setOnItemClickListener(position -> {
            editSearch.setText(list.get(position).getName());
            insertHistory();
        });
        btnClearall.setOnClickListener(view -> showDeleteDialog());
        queryHistory();
    }

    @Override
    protected void initActionBar() {
        btnBack.setOnClickListener(view -> finish());
        editSearch.setOnEditorActionListener((textView, i, keyEvent) -> {
            if (i == EditorInfo.IME_ACTION_SEARCH && !TextUtils.isEmpty(editSearch.getText().toString().trim())) {
                ToastUtils.shortToast(editSearch.getText().toString().trim());
                insertHistory();
            }
            return true;
        });
        editSearch.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

            }

            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                if (charSequence.toString().length() > 0) {
                    btnSearchdelete.setVisibility(View.VISIBLE);
                } else {
                    btnSearchdelete.setVisibility(View.GONE);
                }
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });
        btnSearchdelete.setOnClickListener(view -> editSearch.setText(""));
    }

    private void showDeleteDialog() {
        new AlertDialog.Builder(this)
                .setMessage("确认清除所有搜索记录吗?")
                .setPositiveButton("确定", (dialogInterface, i) -> deleteHistory(DELETEALL, 1))
                .setNegativeButton("取消", null)
                .setCancelable(true)
                .create().show();
    }

    private void insertHistory() {
        SearchHistory searchHistory = new SearchHistory();
        searchHistory.setName(editSearch.getText().toString().trim());
        SearchHistoryDao.insertHistory(searchHistory);
        queryHistory();
    }

    private void deleteHistory(int TAG, int position) {
        if (TAG == DELETEONE)
            SearchHistoryDao.deleteHistory(list.get(position));
        else if (TAG == DELETEALL)
            SearchHistoryDao.clearAll();
        queryHistory();
    }

    private void queryHistory() {
        list.clear();
        list.addAll(SearchHistoryDao.queryAll());
        Collections.reverse(list);
        adapter.notifyDataSetChanged();
    }
}

SearchHistoryDao有命名问题的坑,踩踩更健康

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,333评论 25 707
  • 前言 我相信,在平时的开发过程中,大家一定会或多或少地接触到SQLite。然而在使用它时,我们往往需要做许多额外的...
    勤奋的pangdunhu阅读 1,984评论 1 11
  • 生命中总会有太多伤感和遗憾,我们也会在别人的歌里听着自己的故事,或许对待爱情最大的忠贞莫过于:学会好好爱自己,才能...
    白鹿温言阅读 677评论 5 4
  • 上篇 每个人都有一套自我激励的方法,只是有的人自知,有的人不自知。 自知的人会强化自我激励的内容并总结出系统性的方...
    左猛大叔阅读 376评论 0 0