Esto hará que sus TextView negrita, subrayado y cursiva al mismo tiempo.
strings.xml
<resources>
<string name="register"><u><b><i>Copyright</i></b></u></string>
</resources>
Para establecer esta cadena a la Vista de Texto, hacer esto en su main.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/register" />
o en JAVA,
TextView textView = new TextView(this);
textView.setText(R.string.register);
A veces, el enfoque anterior no será útil cuando tenga que usar texto dinámico. Entonces, en ese caso, SpannableString entra en acción.
String tempString="Copyright";
TextView text=(TextView)findViewById(R.id.text);
SpannableString spanString = new SpannableString(tempString);
spanString.setSpan(new UnderlineSpan(), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.BOLD), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.ITALIC), 0, spanString.length(), 0);
text.setText(spanString);
SALIDA
Funciona para configurar sólo uno de ellos? – falstro
si funciona bien también quiero hacerlo en línea. –
textView.setPaintFlags (Paint.UNDERLINE_TEXT_FLAG); – bCliks