liyang_ 2016-12-04 12:52 采纳率: 0%
浏览 837

数据库利用寻找ID找寻listview中的内容。

自己做了个记事本,用到了listview控件跟轻量级数据库。
在Dao类中创建了findviewbyid的方法
当我单击listview,已将添加好的忘备录无法在编辑页面中显示,我觉得肯定是利用ID寻找数据库中的 内容写错了,但是不知道如何修改,望大神赐教
Dao中方法:public NoteBean findById(Integer id){
SQLiteDatabase db=helper.getWritableDatabase();
Cursor cursor=db.rawQuery("select * from note where id = ?",
new String[]{id.toString()});
NoteBean noteBean=new NoteBean();
if (cursor.moveToFirst()){
int mynewid=cursor.getInt(cursor.getColumnIndex("id"));
String mynewcontent=cursor.getString(cursor.getColumnIndex ("content"));
String mynewdate=cursor.getString(cursor.getColumnIndex("date"));
noteBean.setId(mynewid);
noteBean.setContent(mynewcontent);
noteBean.setDate(mynewdate);
}
cursor.close();
db.close();
return noteBean;
MainActivity方法: /*
* 查看修改内容
* /
listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
NoteBean noteBean=(NoteBean) parent.getAdapter().getItem(position);
Log.e("liayang","Id是"+position);
int mynewId=noteBean.getId();
//int mynewId=position+1;
// int mynewId=0;
Intent intent=new Intent(MainActivity.this,UpdateNoteActivity.class);
/
把int类型转化为String类型的*/
intent.putExtra("",String.valueOf(mynewId));
startActivity(intent);

  • 写回答

1条回答 默认 最新

  • bdmh 移动开发领域优质创作者 2016-12-04 12:58
    关注

    你先调试cursor是否查到数据,还有你的id怎么存到数据库中的,是否永远不变

    评论

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记