Jump to content

How create menu in custom skin?


grk26331

Recommended Posts

Hi, Max!
I have stupid question :huh:    about menu customization.
I have replaced icons for menu items in "drawable/hdpi" folder but menu items still without changes...
I understand that problem related with styles. But where I must override path to icons?
Any help will be highly appreciated!  :)

 

Link to comment
Share on other sites

  • 4 weeks later...

There are two menu types in Poweramp - action bar and "old" classic menu. You can override icons for both by overriding appropriate menu icon references. E.g.

menu/menu_eq.xml (you don't change that, just take reference from there):

...

<item android:id="@+id/folders_library_button"

android:icon="?folders"

android:title="@string/folders_lib"

android:showAsAction="ifRoom"

/>

...

 

?folders is a reference to folders drawable image in your there

 

your_theme.xml

....

<item name="folders">@drawable/your_folders_image_here</item>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...