1

アクションバーのオーバーフローアイコンのクリックイベントのリスナーは何ですか?

選択された 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);
}
4

1 に答える 1

1

オーバーフロー メニュー自体の onClick リスナーはありません。メニュー内のアイテムのみ。オーバーフロー メニュー内の要素をクリックすると、onOptionsItemSelected() が呼び出されます。

于 2015-03-14T08:13:22.227 に答える