我想要點擊項目菜單上的該項目將更改圖標。在片段中檢查圖像項目菜單
選擇的項目:
button_add_to_wishlist.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_checked="false"
android:drawable="@drawable/ic_add_fav" />
<item
android:state_checked="true"
android:drawable="@drawable/ic_add_fav_fill" />
菜單
<item
android:id="@+id/add_to_wishlist"
android:title="@string/book_btn_text_add_to_wishlist"
android:icon="@drawable/button_add_to_wishlist"
android:checkable="true"
app:showAsAction="always"/>
我以前使用過這個,但它不起作用「button_add_to_wishlist」是選擇器,它是一個meni項目的圖標。 – rkovtiuk