デフォルトでは、次のコードを使用して可視性をfalseに設定します。ユーザーが私の活動のボタンをクリックしたときにクリックイベントを使用してアクションバーアイテムをプログラムで表示/非表示する方法
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_items, menu);
menu.findItem(R.id.action_share).setVisible(false);
return true;
}
は今どのように私は再びそれを見えるようにすることができます。あなたのonCreateOptionsMenuで
ありがとうございます。 – Ramesh