I am using a custom ListView
with RatingBar
and ImageButton
. Here is my problem: When I click on my ListView
, my OnItemClickListener
is not working. Please can any one help me.
Code:
ListView lv = getListView();
setContentView(lv);
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
Toast.makeText(SuggestionActivity.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
Check on my article to find causes and solutions: http://xjaphx.wordpress.com/2011/07/14/listview-doesnt-respond-to-onitemclicklistener/
I guess you meet Scenario 3. – Pete Houston Oct 04 '11 at 09:49