I want to change the default font of PopupMenu items and use from my custom font for them.
This is the code that I used for creating PopupMenu :
PopupMenu pm = new PopupMenu(this, v);
getMenuInflater().inflate(R.menu.main, pm.getMenu());
pm.show();
And the menu Items :
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/Setting"
android:title="Setting"/>
<item
android:id="@+id/About"
android:title="About"/>
<item
android:id="@+id/Help"
android:title="Help"/>
</menu>
I will be so thankful if you share your suggestions with me :-)
Regards
I think it's not possible. Actually you can use popupWindow and customize it like menu as you want.