actionbarsherlock を使用しており、アクション バーにアイテムを設定しました。その項目をクリックすると、ドロップダウン メニューが表示され、さらに 2 つのオプションが表示されます。私は何をすべきか?これまでの私のコードは次のとおりです。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
com.actionbarsherlock.view.MenuInflater inflater = getSupportMenuInflater();
inflater.inflate(R.menu.activity_main, (com.actionbarsherlock.view.Menu) menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch(item.getItemId()) {
// ?????
// ?????
}
}