Android开发中使用sqlite实现新闻收藏和取消收藏的功能

 之前学习oracle,简单的认为数据库只存在服务器端,学习安卓之后才发现原来android和Ios本身是“携带”数据库的——SQLite,是轻量级的、嵌入式的、关系型数据库,是Android、IOS等广泛使用的的数据库系统。用于存储本地的一直状态。刚写出来一个实现新闻收藏的功能,写出来供大家参考。

  在Android中我们通过SQLiteDatabase这个类的对象操作SQLite数据库。由于SQLite数据库并不需要像C/S数据库那样建立连接以及身份验证的特性,以及SQLite数据库单文件数据库的特性,使得获得SQLiteDatabase对象就像获得操作文件的对象那样简单。

  sqlite要经过创建数据库、创建表,然后进行增删改查等功能。所以第一步,创建一个数据库,SQliteOpenHelper是一个抽象类,来管理数据库的创建和版本的管理。要使用它必须实现它的nCreate(SQLiteDatabase),onUpgrade(SQLiteDatabase, int, int)方法

//创建数据库,建表

privatestaticfinal String DBNAME="news.db";

privatestaticfinalint VERSION=3; //设置版本号

privatestaticfinal String TBL_DETAILNEWS="news"; //创建表名为news的表

privatestaticfinal String TBL_DETAILNEWS_COLUMN_TITLE="_title";

privatestaticfinal String TBL_DETAILNEWS_COLUMN_URL="_url";

privatestaticfinal String TBL_DETAILNEWS_COLUMN_DOCID="_docid";

privatestaticfinal String TBL_DETAILNEWS_COLUMN_STATE="_state";

public NewsDBHelper(Context context){

super(context,DBNAME,null,VERSION);

}

@Override

publicvoid onCreate(SQLiteDatabase db) {

// TODO Auto-generated method stub16 StringBuffer sb=new StringBuffer();

sb.append("create table if not exists ");

sb.append(TBL_DETAILNEWS+"(");

sb.append(TBL_DETAILNEWS_COLUMN_DOCID +" varchar(100) primary key ,"); //设置主键

sb.append(TBL_DETAILNEWS_COLUMN_TITLE+ " varchar(100) ,");

sb.append(TBL_DETAILNEWS_COLUMN_URL+" varchar(100) ,");

sb.append(TBL_DETAILNEWS_COLUMN_STATE+" integer ");

sb.append(")");

db.execSQL(sb.toString());

}

@Override

publicvoid onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

String sql2="drop table if exists "+TBL_DETAILNEWS;

db.execSQL(sql2); //创建

onCreate(db);

}

   Android提供了一个名为SQLiteDatabase的类,它封装了一些操作数据库的API。使用它能实现基本的CRUD操作,通过getWritableDatabase()和getReadableDatabase()可以获取数据库实例,便可以写一些dao层的方法来进行对表的操作:

publicclass DetailNewsDao {

private NewsDBHelper helper;

public DetailNewsDao(Context context){

helper=new NewsDBHelper(context); //与数据库建立连接 }

//插入数据

publicvoid insertDetsilNews(News news){

SQLiteDatabase db=helper.getWritableDatabase();

db.execSQL("insert into news(_title,_url,_docid)" + //将要收藏新闻的标题title,标识docid,详细地址url传入数据库,便可以依此打开新闻详显 "values(?,?,?)",new String[]{news.getTitle(),news.getDetailUrl(),news.getDocid()});

db.close();

}

//删除数据

publicvoid del(String docid){ //根据传入参数docid删除数据 SQLiteDatabase db=helper.getReadableDatabase();

db.execSQL("delete from news where _docid = ?",new Object[]{docid});

db.close();

}

//查询数据

public List<News> findSelected(){

SQLiteDatabase db=helper.getReadableDatabase();

Cursor c=db.rawQuery("select * from news", null); //只有对数据进行查询时,才用rawQuery(),增、删、改和建表,都用execSQl() List<News> list=new ArrayList<News>();

while(c.moveToNext()){

News news=new News();

news.setTitle(c.getString(c.getColumnIndex("_title")));

news.setDetailUrl(c.getString(c.getColumnIndex("_url")));

news.setDocid(c.getString(c.getColumnIndex("_docid")));

list.add(news);

}

c.close();

db.close();

return list;

}

}

用actionbar做好菜单按钮,点击收藏,执行代码 :

if(item.getTitle().equals("收藏")){    

Toast.makeText(this,"收藏成功", Toast.LENGTH_LONG).show();

detailNewsDao.insertDetsilNews(news);

item.setTitle("取消收藏");

}else{

detailNewsDao.del(news.getDocid());

Toast.makeText(this,"取消收藏", Toast.LENGTH_LONG).show();

item.setTitle("收藏");

}

以上所述是小编给大家介绍的Android开发中使用sqlite实现新闻收藏和取消收藏的功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

以上是 Android开发中使用sqlite实现新闻收藏和取消收藏的功能 的全部内容, 来源链接: utcz.com/z/356487.html

回到顶部