获取android中listview中所选项目的空间内容

时间:2013-03-28 09:31:01

标签: android android-listview

我是android编程的新手,我的列表视图有问题 在我的应用程序中,我必须从数据库中读取数据(名称,ID,年份),然后将其添加到listview之后,用户必须选择其中一个 项目和新活动再次我从数据库中读取数据,并根据用户的选择列出一些其他项目 Ol在这个时候在我的第一个活动中,我读取数据并将它们添加到listview ..要选择我必须定义一个listener..right? 我像这个代码一样定义它

enter code here @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_read_book);

    String SDcardPath = Environment.getExternalStorageDirectory().getPath();
    String DbPath = SDcardPath + "/Tosca/" + "persian_poem.db";
    ListView list = (ListView) findViewById(R.id.list_poet_name);

    try {
        db = SQLiteDatabase.openDatabase(DbPath,null,SQLiteDatabase.CREATE_IF_NECESSARY);
        getData();
        db.close();

    }
    catch (SQLiteException e) {
        Toast.makeText(this, e.getMessage(), 1).show();
    }

    list.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View v, int position,
                long id) {
            // TODO Auto-generated method stub
            ListView list = (ListView) findViewById(R.id.list_poet_name);
            Log.i(TAG, "Listview get Item Pos");
            Peot_ID.putString ("Peot_ID", (String) list.getItemAtPosition(position));
            Intent Book_list_intent = new Intent (Read.this,Book_list.class);
            Book_list_intent.putExtras(Peot_ID);
            startActivity(Book_list_intent);
        }

    });





}
private void getData() {


        try {
        //txtMsg.append("\n");
        // obtain a list of from DB
            String TABLE_NAME = "classicpoems__poet_contents";
            String COLUMN_ID = "poet_id";
            String _ID = "_id";
            String COLUMN_NAME = "poet_name";
            String COLUMN_CENTURY = "century_start";
            String [] columns ={_ID,COLUMN_ID,COLUMN_NAME,COLUMN_CENTURY};

        Cursor c = db.query(TABLE_NAME,columns,null, null, null, null, COLUMN_ID);

        SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2, c, 
               new String[] {COLUMN_NAME,COLUMN_CENTURY}, new int[] {android.R.id.text1,android.R.id.text2}, 0);

    ListView list = (ListView) findViewById(R.id.list_poet_name);
    list.setAdapter(adapter);



        } catch (Exception e) {
        Toast.makeText(this, e.getMessage(), 1).show();
        }


}

但是在这里我有一个问题..我想发送peot_id的数据(它在db中的_id列中的deffrent)到下一个活动..我提到过 使用此代码,我可以获得所选项目的整行,我只想要它的一部分(peot_id)你能帮助我如何从选中获得Peot_ID 项目清单? 我有另一个问题.. 正如你在我的代码中看到的那样,我必须多次引用一个spasial listview ..每次我用这段代码定义它

enter code hereListView list = (ListView) findViewById(R.id.list_poet_name);

如何定义这个列表一次并在我的代码中的几个地方使用它?就像一个公共变量或者像那样的 谢谢你的帮助。

3 个答案:

答案 0 :(得分:0)

您可以像这样进行查询以单独获取特定列记录:

Cursor mCursor = mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
              KEY_NAME, KEY_DESIGNATION}, KEY_ROWID + "=" + yourPrimaryKey, null,
              null, null, null, null);
        if (mCursor != null) {
          mCursor.moveToFirst();
        }

答案 1 :(得分:0)

  

正如您在我的代码中看到的那样,我必须参考一个spasial listview   times..each time我用这段代码定义了它

没有。只需创建一个全局ListView变量列表,您就可以从Activity中的任何位置访问它。无需在OnItemClick()方法中再次声明和初始化ListView。

  

我想发送peot_id的数据(它与db中的_id列不同)   下一个活动..我提到过这个代码我可以得到整行   所选项目,我只想要它的一部分(peot_id)你能帮助我吗?   如何从选定的列表项中获取Peot_ID?

您正在使用Android定义的基本布局

android.R.layout.simple_list_item_2

我建议您为行创建自己的XML文件,然后只需从ListView获取整个视图,然后从View中获取ID

实施例

listrow.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dp"
    android:background="@drawable/addresses_list_selector"
    >

    <TextView 
        android:id="@+id/id_column"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <TextView 
        android:id="@+id/name_column"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/id_column"
        />

    <TextView 
        android:id="@+id/century_column"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/name_column"
        />

</RelativeLayout>

然后使用CursorAdapter

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.listrow, c, 
      new String[] {COLUMN_ID, COLUMN_NAME, COLUMN_CENTURY}, 
      new int[] {R.id.id_column, R.id.name_column, R.id.century_column}, 0);

然后从行获取ID:

public void onItemClick(AdapterView<?> parent, View v, int position,
                long id) {
   TextView id = (TextView) v.findViewById(R.id.id_column);
   if (id != null) {
      String idString = id.getText().toString();
   }
}

注意:

如果您仍想使用Android的预定义布局,则需要从ID_COLUMN传入String [],然后通过ID

从行访问row.findViewById(<id>);
String[] from = {ID_COLUMN, NAME_COLUMN};
int[] to = {android.R.id.text1, android.R.id.text2};
TextView id = v.findViewById(android.R.id.android.R.id.text1);
String idString = id.getText().toString();

答案 2 :(得分:0)

我个人更喜欢使用像这样的onListItemclick()方法

//不要忘记覆盖 - 非常重要

@Override

public void onListItemClick(ListView l, View v, int position, long id) {
 //TODO what you what you have here the vars position - position of the selected item in list
// and also the id so you can easy trace what selection done the user
// you can play with this 

}