程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> listview-怎麼在Listview中實現onClick?

listview-怎麼在Listview中實現onClick?

編輯:編程綜合問答
怎麼在Listview中實現onClick?

我猜我的問題很簡單

我要實現的功能代碼如下:

public class AndroidSQLite extends Activity { private SQLiteAdapter mySQLiteAdapter;

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    ListView listContent = (ListView)findViewById(R.id.contentlist);
    mySQLiteAdapter = new SQLiteAdapter(this);
    mySQLiteAdapter = new SQLiteAdapter(this);
    mySQLiteAdapter.openToRead();

    Cursor cursor = mySQLiteAdapter.queueAll();
    startManagingCursor(cursor);

    String[] from = new String[]{SQLiteAdapter.KEY_NOME};
    int[] to = new int[]{R.id.text};

    SimpleCursorAdapter cursorAdapter =
     new SimpleCursorAdapter(this, R.layout.row, cursor, from, to);

    listContent.setAdapter(cursorAdapter);

    mySQLiteAdapter.close();
}
}

請幫忙。謝謝

最佳回答:


試試:

listContent.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> adapter, View arg1,
                int position, long id) {

            Log.i("get ItemIDPosition",
                    "" + adapter.getItemIdAtPosition(position));
            Log.i("get ItemATPosition", "" + adapter.getItemAtPosition(position));

        }
    });
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved