I've created a directory inside drawable directory which contains two icons "empty_star.png". Now how to give address of these icons in style.xml
i tried following:
<item android:state_selected="true"
android:state_window_focused="true"
android:drawable="drawable/icons/empty_star" />
<item android:drawable="drawable/icons/empty_star" />
but it shows error.
i also tried @drwable/icons/empty_star but still getting error.