Pregunta

Is there anyway to make Android text in the xml file both bold and italics?

SAMPLE

¿Fue útil?

Solución

Yes, just add android:textStyle="bold|italic".

Otros consejos

have you tried this

android:textStyle="italic|bold"

try this:

<Textview android:textStyle="bolditalic" ....

for more info see http://developer.android.com/reference/android/widget/TextView.html#attr_android:textStyle

<TextView
    android:id="@+id/mTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold|italic"
    android:text="YOUR_TEXT"
/>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top