Clans / FloatingActionButton

Android Floating Action Button based on Material Design specification
Apache License 2.0
5.23k stars 1.13k forks source link

How to set the textStyle for a label? #387

Open olibits opened 7 years ago

olibits commented 7 years ago

I want to put textStyle: "bold" for a label.

stavfx commented 7 years ago

Try setting app:menu_labels_style="@style/FabLabel" in the layout xml. and this in styles.xml

<style name="FabLabel">
   <item name="android:textStyle">bold</item>
</style>