Ejemplo 1: fuente de Android en negrita xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:text="@string/app_name"
android:layout_gravity="center"
/>
Ejemplo 2: cómo configurar el estilo de texto en negrita en Android mediante programación
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)