I am developing an application with list-view, which consists of check box as well as Rating bar, here my problem is while i am clicking on arrow button or on listview on item click listener is not working for me? any one can help me i am trying for longtime........
ListView lv = getListView();
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();
}
});
}