CAB"检查"按键

时间:2012-11-16 01:06:19

标签: android android-actionbar android-menu

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

项目是否与某些内部ID相关联,如android.R.id.checkbox?

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

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

感谢。

1 个答案:

答案 0 :(得分:1)

好的,在尝试了一些事情后终于找到了解决方案。 将所需的代码放在复选框中或在下面的方法中按下

 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
}

};