右上のメニューにすべてを配置するアクションバーがあり、ユーザーがクリックするとメニューオプションが開きます。
使用する各アクティビティで、アクション バー メニューをこれで膨らませます。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main2, menu);
return true;
}
main2.xml の私の xml は次のとおりです。
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_searchHome"
android:orderInCategory="100"
android:showAsAction="never"
android:title="Seach"/>
</menu>
私の質問は、xml のアイテムに onclick を配置するかどうかです。もしそうなら、それが呼び出す onclick メソッドをどこに配置しますか? このアクション バーを起動するすべてのアクティビティに配置する必要がありますか?