এক্সএমএল ফাইলের মাধ্যমে টেক্সটভিউ সাহসী?


178

এক্সএমএল এর মাধ্যমে কোনও পাঠ্য ভিউতে পাঠ্যকে গা bold় করার কোনও উপায় আছে কি?

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

ধন্যবাদ



1
android:textStyle="bold"
ahmednabil88

উত্তর:


473

আমার একটি প্রকল্প রয়েছে যার মধ্যে আমার নিম্নলিখিতগুলি রয়েছে 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" /> স্টাইলের সাথে এটি ব্যবহার করছি x 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" />


2

ব্যবহার android:textStyle="bold"

অ্যান্ড্রয়েড টেক্সটভিউ বোল্ড করার 4 টি উপায়

এটার মত

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

অ্যান্ড্রয়েড টেক্সটভিউকে সাহসী করার বিভিন্ন উপায় রয়েছে।


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.