アクションバーのオーバーフローアイコンのクリックイベントのリスナーは何ですか?
選択された onoptions では検出されないため、他の場所で検出できます
@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);
}