我确定它在stackoverflow上,我一直在搜索,但找不到。Which method is called when nothing in the optionsmenu is selected, but when it closes?
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.splashmenu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
而我少了一个...
谢谢!