我目前在菜单中有一个项目是猪的图标。我想要发生的是当我点击猪时,图标将变为另一个像鸡的图像。我已经在StackOverFlow上阅读了其他论坛,但仍然没有运气。
我知道你不能使用findViewbyId来引用菜单项,但是findItem方法对我不起作用,或者至少它说无效。请指教。
这是我目前的代码:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/menuImage"
android:title=""
android:icon="@drawable/pig"
android:orderInCategory="1"
app:showAsAction="always|withText"/>
</menu>
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.menuImage:
Toast.makeText(this, "YOU THINK YOU GOT THIS?", Toast.LENGTH_SHORT).show();
MenuItem changeImage = (MenuItem) findViewById(R.id.menuImage);
changeImage.setIcon(R.drawable.chicken);
return true;
}
return true;
}
答案 0 :(得分:2)
onOptionsItemSelected
。
item
参数包含已选择的菜单项。
所以你可以这样做:
item.setIcon(R.drawable.chicken);