TextView เป็นตัวหนาผ่านไฟล์ xml หรือไม่


178

มีวิธีการทำให้ข้อความเป็นตัวหนาใน TextView ผ่าน XML หรือไม่?

<TextView
   android:textSize="12dip"
   android:textAppearance="bold"  -> ??
</TextView>

ขอบคุณ



1
android:textStyle="bold"
ahmednabil88

คำตอบ:


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


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" />



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"
/>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.