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怎么存到数据库中的,是否永远不变

    评论

报告相同问题?

悬赏问题

  • ¥30 帮我写一段可以读取LD2450数据并计算距离的Arduino代码
  • ¥15 C#调用python代码(python带有库)
  • ¥15 矩阵加法的规则是两个矩阵中对应位置的数的绝对值进行加和
  • ¥15 活动选择题。最多可以参加几个项目?
  • ¥15 飞机曲面部件如机翼,壁板等具体的孔位模型
  • ¥15 vs2019中数据导出问题
  • ¥20 云服务Linux系统TCP-MSS值修改?
  • ¥20 关于#单片机#的问题:项目:使用模拟iic与ov2640通讯环境:F407问题:读取的ID号总是0xff,自己调了调发现在读从机数据时,SDA线上并未有信号变化(语言-c语言)
  • ¥20 怎么在stm32门禁成品上增加查询记录功能
  • ¥15 Source insight编写代码后使用CCS5.2版本import之后,代码跳到注释行里面