如何使列表视图的可点击项目直接指向具有某些数据的另一个类?



我以前问过用数据库中的数据填充列表视图的问题。现在,我正在尝试使这些项目可点击,并将其指向另一个类,其中包含一些将用于更新类的信息。

我想我已经通过使用intents成功地将它引导到了"另一个"类,但问题是我在intents上放置的数据没有转移到"另一"类上。

这是代码:MySQLView.java

     ArrayList<String> data =  info.geData(); 
    lv.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, data));
lv.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, data));
    lv.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position,
        long id) {
                   // TODO Auto-generated method stub
               /***I made the value of the item, numbers. cos I think its easier?***/

    String draftID = lv.getItemAtPosition(position).toString(); 
    Intent i =new Intent(SQLView.this, com.android.its.SQLiteExample.class);
          i.putExtra("draftID", draftID);
          startActivity(i);
/***just to check if it has value***/             
    Toast.makeText(getBaseContext(),"position is : "+position+" and value is "+
                   draftID,Toast.LENGTH_SHORT).show();

        }
     });

然后是SQLiteExample类,它包含editText

case R.id.bgetInfo:
        try {
            Bundle extras = getIntent().getExtras(); 
            String s= extras.getString("draftID");
            long l = Long.parseLong(s);
            HotOrNot hon = new HotOrNot(this);
            hon.open();
            String returnedName = hon.getName(l);
            String returnedHotness = hon.getHotness(l);
            hon.close();
            sqlName.setText(returnedName);
            sqlHotness.setText(returnedHotness);
        } catch (Exception e) {
            String error = e.toString();
            Dialog d = new Dialog(this);
            d.setTitle("Dang it!");
            TextView tv = new TextView(this);
            tv.setText(error);
            d.setContentView(tv);
            d.show();
        }
        break;

这是我的数据库助手类

 public ArrayList<String> geData() {
    // TODO Auto-generated method stub
    String[]columns=new String[]{ KEY_ROWID,KEY_NAME, KEY_HOTNESS};
    Cursor c =ourDatabase.query(DATABASE_TABLE, columns, null, null, null, null, null);
    ArrayList<String> result = new ArrayList<String>();
    int iRow=c.getColumnIndex(KEY_ROWID);

    for(c.moveToFirst(); !c.isAfterLast();c.moveToNext()){
        result.add(c.getString(iRow));
    }
    return result;
}
    if (c!=null){
        c.moveToFirst();
        String hotness=c.getString(2);
        return hotness;
    }
    return null;
}
public String getName(long l) throws SQLiteException{
    // TODO Auto-generated method stub
    String[]columns=new String[]{ KEY_ROWID,KEY_NAME, KEY_HOTNESS};
    Cursor c= ourDatabase.query(DATABASE_TABLE, columns,  KEY_ROWID+"="+l, null, null, null, null);
    if (c!=null){
        c.moveToFirst();
        String name=c.getString(1);
        return name;
    }
    return null;
}
public String getHotness(long l)throws SQLiteException {
    // TODO Auto-generated method stub
    String[]columns=new String[]{ KEY_ROWID,KEY_NAME, KEY_HOTNESS};
    Cursor c= ourDatabase.query(DATABASE_TABLE, columns, KEY_ROWID+"="+l, null, null, null, null); 

(这是我之前的问题如何从我的数据库中获取数据并将其放在可点击的ListView上?)

更新:好吧,虽然我的代码真的很乱,但它似乎一直都在工作,我没有测试getInfo按钮,这就是它没有出现的原因。很抱歉打扰你们:p,但我仍然想知道你们会用什么方法将ROWID(数据库)放在列表视图中,并将其值放在其他类上?

应该是。通过Intent启动的SqlLiteExample类应该在onCreate方法中检索Intent中的数据

protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         Intent intent = getintent()
         String draftID = intent.getStringExtra("draftID");
     }

你在这么做吗?

相关内容

  • 没有找到相关文章

最新更新