1

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

我想我已经设法通过使用意图将它引导到“另一个”类,但问题是我放在意图上的数据不会在“另一个”类上传输。

这是代码: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();


        }

     });

然后这里是包含 editText 的 SQLiteExample 类

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); 

(这是我之前的问题How to get data from my database and put it on a ListView that is clickable?

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

4

1 回答 1

0

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

protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);

         Intent intent = getintent()
         String draftID = intent.getStringExtra("draftID");
     }

你在做这个吗?

于 2012-03-03T11:05:41.663 回答