Textml xml फ़ाइल के माध्यम से बोल्ड?


178

क्या XML के माध्यम से TextView में टेक्स्ट को बोल्ड करने का कोई तरीका है?

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

धन्यवाद



1
android:textStyle="bold"
अहमदीनेबेल 8

जवाबों:


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" /> शैली के साथ इस तरह का उपयोग कर रहा हूँ। xml <style name="PtSansNarrowFont" parent="android:TextAppearance"> <!-- Custom Attr--> <item name="fontPath">fonts/pt-sans_narrow.ttf</item> </style> बोल्ड लागू नहीं
प्रसाद


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"
/>
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.