我已经设置了一个这样的自定义操作栏
final ActionBar actionBar = getSupportActionBar();
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.custom_layout);
setContentView(R.layout.activity_main);
getSupportActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.actionbar_bg));
我的 custom_layout 包含一个 imagebutton 我如何攻击该按钮的点击侦听器。