1

I have textual menu items inside the ToolBar and I need to make them bold, and change their type face.

enter image description here

  1. How to change the style to be bold from the theme?
  2. Can I get access to the internal view widget and change it's typeface?
Mahdi Hijazi
  • 4,424
  • 3
  • 24
  • 29

1 Answers1

0

You can set Toolbar style

 <style name="DrawerTitle">
    <item name="android:textColor">@color/white</item>
    <item name="android:textStyle">bold</item>
    <item name="android:textSize">20sp</item>
</style>

Also refer following link-

Change Toolbar Menu Item color (non-hidden action)

Community
  • 1
  • 1
Minp
  • 98
  • 1
  • 1
  • 13