TextView жирным шрифтом через XML-файл?

Ответы:

474

У меня есть проект, в котором у меня есть следующее TextView:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:text="@string/app_name"
    android:layout_gravity="center" 
/>

Итак, я думаю, вам нужно использовать android:textStyle

Паскаль МАРТИН
источник
Я использую так с библиотекой <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="20dp" android:paddingRight="20dp" android:text="@string/start" android:textAppearance="@style/PtSansNarrowFont" android:textColor="@color/white" /> style.xml, <style name="PtSansNarrowFont" parent="android:TextAppearance"> <!-- Custom Attr--> <item name="fontPath">fonts/pt-sans_narrow.ttf</item> </style> не применяя жирный шрифт
Prasad
27

просто используйте

android:textStyle="bold"
Нгуен Минь Бинь
источник
7

Пример:

использовать: android:textStyle="bold"

 <TextView
    android:id="@+id/txtVelocidade"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/txtlatitude"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="34dp"
    android:textStyle="bold"
    android:text="Aguardando GPS"
    android:textAppearance="?android:attr/textAppearanceLarge" />
Элтон да Коста
источник
3

использовать свойство texttyle как жирный

android:textStyle = "bold";
Сарнат Джегадисан
источник
2

использование android:textStyle="bold"

4 способа сделать Android TextView жирным

как это

<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textSize="12dip"
android:textStyle="bold"
/>

Есть много способов сделать Android TextView жирным.

Томас Даниэль
источник
0
Just you need to use 

//for bold
android:textStyle="bold"

//for italic
android:textStyle="italic"

//for normal
android:textStyle="normal"

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:text="@string/userName"
    android:layout_gravity="left"
    android:textSize="16sp"
/>
пары
источник