0

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

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列不同)发送到下一个活动..Bt我提到使用这段代码我可以获得整行选定的项目,我只想要一部分它(peot_id)你能帮我如何从选定的列表项中获取 Peot_ID 吗?我还有另一个问题..正如您在我的代码中看到的那样,我必须多次引用一个空间列表视图..每次我都用这段代码定义它

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

我怎样才能一次定义这个列表并在我的代码中的多个地方使用它?比如公共变量或类似的东西谢谢你的帮助。

4

3 回答 3

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();
        }
于 2013-03-28T09:38:00.277 回答
0

正如您在我的代码中看到的,我必须多次引用一个空间列表视图..每次我用这段代码定义它

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

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

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

android.R.layout.simple_list_item_2

我建议您为行创建自己的XML文件,然后简单地从 ListView 和 View 获取整个 View ,您只能获取ID.

例子:

列表行.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的预定义布局,你需要传入String[] from ID_COLUMN,然后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();
于 2013-03-28T09:38:48.630 回答
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 

}
于 2013-11-01T21:43:57.973 回答