问题描述
|
嗨,我使本教程http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html
但我无法在列表视图中选择此项目。
我该如何解决呢?
我不了解博客上的评论。
也许问题在这里
ListView list = (ListView)findViewById(R.id.ListView_addConta);
DBAdapter db = new DBAdapter(Contas.this);
db.open();
List<Conta> listofConta = db.getContas();
ContaAdapter adapter = new ContaAdapter(this,listofConta);
list.setAdapter(adapter);
解决方法
扩展
ListActivity
而不是Activity
,并覆盖onListItemClick
方法。这种方式最适合我。
这是一个很好的教程:http://www.vogella.de/articles/AndroidListView/article.html