Can't Find The Actionbar Resource Icon
All, Forgive me I just began to learn development of Android, It is the first time I used the ActionBar in my Android application. Firstly. I was following the tutorial to add the
Solution 1:
Unfortunately the resource folders do not support directory hierarchies (sub-folders), so you will need to move all icons to the parent folder (drawable
).
Then reference it like this: android:icon="@drawable/ic_action_search"
https://code.google.com/p/android/issues/detail?id=2018
Post a Comment for "Can't Find The Actionbar Resource Icon"