我想在我的应用中使用上下文操作栏(CAB),但与旧版本的Android不兼容,所以我正在使用本教程:http://www.miximum.fr/tutos/849-porting-the-contextual-anction-mode-for-pre-honeycomb-android-apps 我的代码是:
public class SongsFragment extends SherlockListFragment implements
LoaderManager.LoaderCallbacks<Cursor>, OnLongClickListener{
...
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
activity = this.getActivity();
...
mMode = null;
mListView = getListView();
mListView.setItemsCanFocus(false);
mListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
mListView.setOnLongClickListener(this);
}
@Override
public boolean onLongClick(View v) {
SparseBooleanArray checked = mListView.getCheckedItemPositions();
boolean hasCheckedElement = false;
for (int i = 0; i < checked.size() && !hasCheckedElement; i++) {
hasCheckedElement = checked.valueAt(i);
}
if (hasCheckedElement) {
if (mMode == null) {
mMode = activity.startActionMode(mActionModeCallback);
}
} else {
if (mMode != null) {
mMode.finish();
}
}
return false;
}
private ActionMode.Callback mActionModeCallback = new ActionMode.Callback() {
@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
// Create the menu from the xml file
activity.getSupportMenuInflater().inflate(R.menu.cab_songs, menu);
return true;
}
...
我有错误:
有什么想法吗?是否有另一种使用sherlock的CAB解决方案?
答案 0 :(得分:2)
将ActionMode
和MenuInflater
的导入更改为其等效的ActionBarSherlock(com.actionbarsherlock.view.ActionMode
和com.actionbarsherlock.view.MenuInflater
)。
答案 1 :(得分:2)
我解决了使用:
getSherlockActivity().startActionMode(mActionModeCallback);
...
mode.getMenuInflater().inflate(R.menu.cab_songs, menu);
现在,我希望在用户执行“点击”时执行操作,并在用户执行“长按”时执行其他操作。我有“onItemLongClick”和“onListItemClick”,但有时候不会调用longClick,如果我发布它,则会调用“onListItemClick”。我该怎么做?