HorizontalVariableListView
HorizontalVariableListView copied to clipboard
Don't work on 2.3
Failed resolving Lit/sephiroth/android/library/util/v11/MultiChoiceModeListener; interface 549 'Landroid/view/ActionMode$Callback;'
Only API 11 http://developer.android.com/intl/ru/reference/android/view/ActionMode.Callback.html
Hi! If you haven't find a solution yet, you have to change android.view.ActionMode for android.support.v7.view.ActionMode in MultiChoiceModeListener.
https://developer.android.com/reference/android/support/v7/app/package-summary.html
Delete @TargetApi(11). Change ActionMode in AbsHListView too. Remember to put something like that in the class where you will use the list: HListView listView = (HListView) findViewById(R.id.hListView1);
That worked for me. Hope it helps you. Miguel.
Thanks Miguel.