1
我想鉤上一個按鈕點擊列表器的菜單,是否有可能這樣做,是否有可能改變選項菜單的背景顏色?預計感謝我們可以通過按鈕點擊偵聽器在android上掛鉤選項菜單嗎?
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
menu.add(0, 1, Menu.NONE, "First");
menu.add(0, 2, Menu.NONE, "Second");
return true;
}