Hi,
I have trying to set an OnKeyListener, but I am not sure how can I get the selected row on the list view in the OnKeyListener(). The 'v' parameter always give me the ListView, not the selected row. Any idea how to solve this problem? Thank you.
listView.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
//....
}
}