How to Bold Text in a Button
added in API Level 11. Create an Android project, if you don't already have one.
3. Open the layout, main.xml and add the following highlighted code inside the <Button> tag.
<Button
...
android:textStyle="bold"
/>
4. Compile and run!
Related Articles