通过SQLiteOpenHelper结合SharedPreferences
- “收藏”点击事件
首先,将id保存一份到SharedPreferences,便于每次进入当前页面时,判断是否已经保存;
然后,创建FavoritesDao对象,将当前页面的“_id”,“title”,“typeid”,“time”保存到数据库当中,便于在收藏界面进行展示;
SharedPreferences sp = this.getSharedPreferences("favorites_show",Context.MODE_PRIVATE)
editor = sp.edit()
@Override
public void onClick(View v) {
switch(v.getId()) {
case R.id.rl_sc: //我的收藏
if(sp.getString(id,"0").equals(id)) {
new FavoritesDao(this).delete(id)
editor.putString(id,"0")
editor.commit()
iv_sc.setImageResource(R.drawable.sc_wx)
tv_sc.setTextColor(getResources().getColor(R.color.color_999))
Toast.makeText(this,