2

我们如何处理 CAB 菜单中的检查按钮?

该项目是否与某个内部 id(如 android.R.id.checkbox)相关联?

我读过它可以在 SherlockActionBar CAB 中处理,但它可以与本机 ActionBar CAB 相同吗?

有没有办法检测这个项目的交互?onActionModeFinished()是不够的,因为我多次调用它,因为之前发生的更改需要 CAB 存在。

谢谢。

4

1 回答 1

1

好的,在尝试了一些事情后终于找到了解决方案。在下面的方法中放置您想要的复选框或onbackpressed代码

 public void onDestroyActionMode(ActionMode mode) 
{
     //place the code you want for the checkbox or back icon here.  If you don't want
     // this code run if other selections are used, then just create a boolean value that
    //you earlier on and check the value in this section before implementing the code
}

};

于 2012-12-02T21:39:54.443 回答