2011-06-15 67 views
0

您好我做这个教程http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html我的列表视图不可选

,但我不能选择在ListView THI项目..

我怎样才能解决这个?

我don'y了解博客上的评论..

也许问题是在这里

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

回答