所以我在操作栏上有菜单项。在 onOptionsItemSelected 上,我想更改菜单项图像。
这是我的代码
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle presses on the action bar items
switch (item.getItemId()) {
case R.id.todaySched:{
viewTodaySched();
item.setIcon(R.drawable.calendarselected);
infoLog=(MenuItem)findViewById(R.id.infoLog);
infoLog.setIcon(R.drawable.book);
return true;}
case R.id.infoLog:{
viewInfoLog();
item.setIcon(R.drawable.bookselected);
todaySched=(MenuItem)findViewById(R.id.todaySched);
todaySched.setIcon(R.drawable.calenderselected);
return true;}
default:
return super.onOptionsItemSelected(item);
}
}
但是当我点击它时图标不会改变,并且我得到了运行时错误。例如:当我单击 todaySched 图标时,似乎无法获取 infoLog 项目 ID。
我的 LogCat:LogCat