android - puedo - letra retro whatsapp
¿Cómo configurar el estilo de fuente en negrita, cursiva y subrayado en un TextView de Android? (9)
Esta es una forma fácil de agregar un subrayado, mientras se mantienen otras configuraciones:
textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
Quiero que el contenido de TextView
negrita, cursiva y subrayado. Probé el siguiente código y funciona, pero no se subraya.
<Textview android:textStyle="bold|italic" ..
¿Cómo lo hago? ¿Alguna idea rápida?
Esto debería hacer que su TextView esté en negrita , subrayada y en cursiva al mismo tiempo.
strings.xml
<resources>
<string name="register"><u><b><i>Copyright</i></b></u></string>
</resources>
Para establecer esta cadena en su TextView, haga 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
No sé sobre subrayado, pero para negrita y cursiva hay "bolditalic"
. No hay ninguna mención de subrayado aquí: http://developer.android.com/reference/android/widget/TextView.html#attr_android:textStyle
bolditalic
cuenta que para usar el texto en bolditalic
mencionado que necesita, cito de esa página.
Debe ser uno o más (separados por ''|'') de los siguientes valores constantes.
así que usaría bold|italic
Puede revisar esta pregunta para subrayar: ¿Puedo subrayar el texto en un diseño de Android?
O simplemente así en Kotlin:
val tv = findViewById(R.id.textViewOne) as TextView
tv.setTypeface(null, Typeface.BOLD_ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD or Typeface.ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD)
// OR
tv.setTypeface(null, Typeface.ITALIC)
// AND
tv.paintFlags = tv.paintFlags or Paint.UNDERLINE_TEXT_FLAG
O en Java:
TextView tv = (TextView)findViewById(R.id.textViewOne);
tv.setTypeface(null, Typeface.BOLD_ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD|Typeface.ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD);
// OR
tv.setTypeface(null, Typeface.ITALIC);
// AND
tv.setPaintFlags(tv.getPaintFlags()|Paint.UNDERLINE_TEXT_FLAG);
Mantenlo simple y en una línea :)
Para negrita y cursiva, lo que esté haciendo es correcto para uso de subrayado siguiendo el código
HelloAndroid.java
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.text.SpannableString;
import android.text.style.UnderlineSpan;
import android.widget.TextView;
public class HelloAndroid extends Activity {
TextView textview;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textview = (TextView)findViewById(R.id.textview);
SpannableString content = new SpannableString(getText(R.string.hello));
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
textview.setText(content);
}
}
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/hello"
android:textStyle="bold|italic"/>
string.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, HelloAndroid!</string>
<string name="app_name">Hello, Android</string>
</resources>
Programación:
Puedes hacerlo programáticamente usando el método setTypeface ():
A continuación se muestra el código para el tipo de letra predeterminado
textView.setTypeface(null, Typeface.NORMAL); // for Normal Text
textView.setTypeface(null, Typeface.BOLD); // for Bold only
textView.setTypeface(null, Typeface.ITALIC); // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic
y si desea establecer tipografía personalizada:
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL); // for Normal Text
textView.setTypeface(textView.getTypeface(), Typeface.BOLD); // for Bold only
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC); // for Italic
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC); // for Bold and Italic
XML:
Puede establecer directamente en el archivo XML en como:
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
Sin comillas me funciona:
<item name="android:textStyle">bold|italic</item>
Si estás leyendo ese texto de un archivo o de la red.
Puedes lograrlo agregando etiquetas HTML a tu texto como se mencionó
This text is <i>italic</i> and <b>bold</b>
and <u>underlined</u> <b><i><u>bolditalicunderlined</u></b></i>
y luego puede usar la clase HTML que procesa cadenas HTML en texto con estilo visualizable.
// textString is the String after you retrieve it from the file
textView.setText(Html.fromHtml(textString));
style="?android:attr/listSeparatorTextViewStyle
- Al hacer este estilo, puedes lograr subrayar