GreenDao 学习笔记 1

来源:互联网 发布:macbookpro必装软件 编辑:程序博客网 时间:2024/04/30 13:03


简介

就是这样一个简单的效果,可以通过输入框添加记录,点击列表项时则会删除对应的记录。


准备

https://github.com/greenrobot/greenDAO

到这里下载其中的 DaoExample 子项目,并运行。

我另外写了个 Activity ,实践下 GreenDao 的基本运用。


代码和分析

listview_item.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android"          android:layout_width="match_parent"          android:layout_height="40dp"          android:gravity="center_vertical"          android:textSize="18dp"          android:paddingLeft="8dp"/>

listView 的项,就是一个 TextView。



0 0
原创粉丝点击