点击溢出菜单的监听器,android?

时间:2015-03-14 06:55:26

标签: android menu android-actionbar overflow-menu

操作栏中溢出图标的点击事件的监听器是什么?

在选定的选项中未检测到,因此可以检测到其他位置

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    Log.e("id  ", ""+id);

    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

1 个答案:

答案 0 :(得分:1)

溢出菜单本身没有onClick Listener;仅适用于菜单中的项目。单击溢出菜单中的元素时,将调用onOptionsItemSelected()。