Hi All,
I have the Multi select list view in my project. Here i am using the
custom adapter to build the list view. The code as follows,
public static class EfficientMultiSelectionAdapter extends
ArrayAdapter<String> implements CompoundButton.OnCheckedChangeListener
{
public EfficientMultiSelectionAdapter(Context context, int resource,
String[] objects) {
// My code here
}
public void onCheckedChanged(CompoundButton buttonView, boolean
isChecked){
// My code here.
}
}
Using this code i am able to get the mouse event. That means if i
touch the list view, i am able to see the checked and unchecked
action. I know it is using the CompoundButton event. But if i use key
pad enter key, i am not able to get the same action.
So can any one tell me how to handle this event.
Thanks in advance,
Muthu Kumar K.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---