it's kinda of a funky situation
I have a ListView, a row that is custom and it seems to me that adding the longClickListener doesn't do nothing no more:
listView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) { Log.d("--------","something"); return false;
} });
...just tested onListItemClick... and also nothing:
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Log.d("--------","something");
}
and "custom" meaning that in the row.xml i have
<?xml version="1.0" encoding="utf-8"?>
<customs.customRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"/>
and a class customRow
`public class customRow extends RelativeLayout{
public customRow (Context context) {
super(context);
init();
}
public customRow (Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
private void init() {
String infService = Context.LAYOUT_INFLATER_SERVICE;
LayoutInflater li;
li = (LayoutInflater) getContext().getSystemService(infService);
li.inflate(R.layout.real_row, this, true);
....
}
Everything else works as expected, meaning the SimpleCursorAdapter or the clicking on elements inside my real_row.xml. But in the ListView: a click or long Click doesn't do nothing, not even highlighting the row...
Obviously for a ListView and a non-custum row.xml is works as expected.
So why is that? Do I have to add in my customRow class something like a onLongClickListener on the contaner layout???
Anyone?