Browse Source

Hack bug fix on pre-API level 11 devices when CAB done button is pressed.

pull/11/head
Eric Kok 11 years ago
parent
commit
14c5282ab2
  1. 4
      core/src/com/actionbarsherlock/view/SherlockListView.java

4
core/src/com/actionbarsherlock/view/SherlockListView.java

@ -258,10 +258,14 @@ public class SherlockListView extends ListView { @@ -258,10 +258,14 @@ public class SherlockListView extends ListView {
if (child instanceof Checkable) {
((Checkable) child).setChecked(getCheckedItemPositions().get(position));
} else if (useActivated) {
// TODO: Investigate the impact of this hack fix
// (API level < 11 devices still get to this code point when clicking teh CAB done button)
if (android.os.Build.VERSION.SDK_INT > 11) {
child.setActivated(getCheckedItemPositions().get(position));
}
}
}
}
public ActionMode startActionMode(ActionMode.Callback callback) {
if (actionMode != null) {

Loading…
Cancel
Save