วิธีการตั้งค่า TextView textStyle เช่นตัวหนาตัวเอียง


843

วิธีการตั้งค่าTextViewสไตล์ (ตัวหนาหรือตัวเอียง) ภายใน Java และไม่ใช้รูปแบบ XML?

กล่าวอีกนัยหนึ่งฉันต้องเขียนandroid:textStyleด้วย Java

คำตอบ:


1885
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);

เพื่อรักษาแบบอักษรก่อนหน้า

textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC)

5
หากต้องการลบสไตล์สามารถใช้ Typeface.NORMAL
Brais Gabin

351
หากคุณทำเช่นนั้นคุณจะสูญเสียแบบอักษรก่อนหน้า หากต้องการเก็บไว้ก่อนหน้าทำสิ่งที่ชอบ textView.setTypeface (textView.getTypeface (), Typeface.BOLD_ITALIC);
leocadiotine

34
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL);TextViewจะไม่ลบจัดแต่งทรงผมหนาหรือตัวเอียงจาก คุณจะต้องใช้textView.setTypeface(null, Typeface.NORMAL);สิ่งนั้น
Jarett Millard

57
เพื่อเก็บแบบอักษรก่อนหน้านี้ แต่เพื่อกำจัดสไตล์ที่เป็นตัวหนาหรือตัวเอียงให้ใช้รหัสต่อไปนี้:textView.setTypeface(Typeface.create(textView.getTypeface(), Typeface.NORMAL), Typeface.NORMAL);
Shnkc

6
ขอบคุณ @Shnkc คุณชี้ให้ฉันเห็นทิศทางที่ถูกต้อง ที่จริงแล้วคุณแค่ต้องการ: textView.setTypeface (Typeface.create (textView.getTypeface (), Typeface.NORMAL));
PedroHidalgo

271

ลองใช้วิธีนี้เพื่อตั้งค่าTextViewเป็นตัวหนาหรือตัวเอียง

textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);

14
ถ้าคุณต้องการล้างสไตล์ของแบบอักษรที่มีอยู่คุณจะต้องทำสิ่งที่แตกต่างออกไปเช่น:tv.setTypeface(Typeface.create(tv.getTypeface(), Typeface.NORMAL));
greg7gkb

@ greg7gkb สิ่งtv.setTypeface(null, Typeface.BOLD);นี้จะไม่ทำเช่นเดียวกัน (ล้างสไตล์แบบอักษรที่มีอยู่) หรือไม่
Prabs

การส่งค่า null ลงใน setTypeface () หมายความว่า TextView ใช้ค่าเริ่มต้นที่กำหนดรหัสยากซึ่งอาจแตกต่างจาก Typeface ที่ตั้งค่าไว้ก่อนหน้านี้
greg7gkb

142

โปรแกรม:

คุณสามารถเขียนโปรแกรมโดยใช้setTypeface():

textView.setTypeface(null, Typeface.NORMAL);      // for Normal Text
textView.setTypeface(null, Typeface.BOLD);        // for Bold only
textView.setTypeface(null, Typeface.ITALIC);      // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic

XML:

คุณสามารถตั้งค่าโดยตรงในไฟล์ XML ใน<TextView />ลักษณะ:

android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"

11
ผู้ถามถามว่าจะทำอย่างไรโดยไม่ใช้รูปแบบ XML
JulianSymes

6
ตรวจสอบคำถามwith in Java and without using XMLโดยวิธีการมันจะช่วยให้ผู้อื่นด้วย
Pratik Butani

5
ใช่. ฉันมาที่นี่ผ่าน Google และมันก็ช่วยฉันได้ ขอบคุณ :)
Atul

96

คุณมีสองทางเลือก:

ตัวเลือก 1 (ใช้งานได้กับตัวหนาตัวเอียงและขีดเส้นใต้เท่านั้น):

String s = "<b>Bolded text</b>, <i>italic text</i>, even <u>underlined</u>!"
TextView tv = (TextView)findViewById(R.id.THE_TEXTVIEW_ID);
tv.setText(Html.fromHtml(s));

ตัวเลือก 2:

ใช้Spannable ; มันมีความซับซ้อนมากขึ้น แต่คุณสามารถปรับเปลี่ยนคุณลักษณะข้อความแบบไดนามิก (ไม่เพียง แต่ตัวหนา / ตัวเอียงและสี)


6
ด้วยtypeFaceคุณสามารถกำหนดรูปแบบเดียวสำหรับข้อความทั้งหมด
Gabriel Negut

2
เมื่อฉันพยายามในแถวที่กำหนดเองมันไม่ได้รับทำไม? String s1 = "<b> คุณอยู่ที่: </b>"; holder.address = (TextView) convertView.findViewById (R.id.address_text_view); holder.address.setText (Html.fromHtml (s1) + track.getAddress ());
Shylendra Madda

2
วิธีนี้เป็นวิธีการออกแบบข้อความที่ยอดเยี่ยมบางส่วน เหมือนคำพูดในมุมมองข้อความขนาดใหญ่
Salih Erikci

1
วิธีแรกไม่ทำงานในกรณีของฉันโมฆะ createTextView ส่วนตัว (ชื่อ String ข้อความ String) {textView = new TextView (นี้); textView.setTextSize (17); textView.setText (Html.fromHtml ("<b>" + ชื่อ + "</b>") + ":" + ข้อความ); }
garenyondem

1
ตัวเลือก spannable และ fromHTML อาจทำให้การพิมพ์ / setText ช้าลงหากข้อความมีขนาดใหญ่เนื่องจากการคำนวณรูปแบบใหม่ หลีกเลี่ยงถ้าคุณมีวิธีอื่นที่ใช้ได้
Eugene Kartoyev

42

โปรแกรม:

คุณสามารถเขียนโปรแกรมโดยใช้setTypeface()วิธีการ:

ด้านล่างเป็นรหัสสำหรับแบบอักษรเริ่มต้น

textView.setTypeface(null, Typeface.NORMAL);      // for Normal Text
textView.setTypeface(null, Typeface.BOLD);        // for Bold only
textView.setTypeface(null, Typeface.ITALIC);      // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic

และถ้าคุณต้องการที่จะตั้งค่าแบบอักษรที่กำหนดเอง :

textView.setTypeface(textView.getTypeface(), Typeface.NORMAL);      // for Normal Text
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);        // for Bold only
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);      // for Italic
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC); // for Bold and Italic

XML:

คุณสามารถตั้งค่าโดยตรงในไฟล์ XML ใน<TextView />ลักษณะนี้:

android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"

หรือคุณสามารถตั้งค่าแบบอักษรที่ชอบ (จากเนื้อหา) สำหรับข้อมูลเพิ่มเติมดูลิงค์


14
TextView text = (TextView)findViewById(R.id.THE_TEXTVIEW_ID);

ตอนนี้ตั้งค่าtextviewคุณสมบัติ ..

text.setTypeface(null, Typeface.BOLD);  //-- for only bold the text
text.setTypeface(null, Typeface.BOLD_ITALIC);  //-- for  bold & italic the text
text.setTypeface(null, Typeface.ITALIC);  // -- for  italic the text

11

เพียงแค่ถ้าคุณต้องการให้ข้อความที่เป็นตัวหนา เขียนบรรทัดนี้ในเลย์เอาต์ของคุณในคุณสมบัติมุมมองข้อความ

android:textStyle="bold"


10

มันจะเป็น

yourTextView.setTypeface(null,Typeface.DEFAULT_BOLD);

และเอียงควรจะสามารถที่จะอยู่กับการแทนที่ด้วยTypeface.DEFAULT_BOLDTypeface.DEFAULT_ITALC

ให้ฉันรู้ว่ามันทำงานอย่างไร


10

ลองทำสิ่งนี้เพื่อกำหนดTextView สไตล์ของคุณด้วยรหัสจาวา

txt1.setTypeface(null,Typeface.BOLD_ITALIC);


7

ลองสิ่งนี้:

textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);


4

วิธีมาตรฐานในการทำเช่นนี้คือการใช้สไตล์ที่กำหนดเอง อดีต

ในการstyles.xmlเพิ่มดังต่อไปนี้

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="MyApp.TextAppearance.LoginText">
    <item name="android:textStyle">bold|italic</item>
</style>

ใช้สไตล์นี้กับคุณTextViewดังนี้

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="@style/MyApp.TextAppearance.LoginText" />

4

วิธีหนึ่งที่คุณสามารถทำได้คือ:

myTextView.setTypeface(null, Typeface.ITALIC);
myTextView.setTypeface(null, Typeface.BOLD_ITALIC);
myTextView.setTypeface(null, Typeface.BOLD);
myTextView.setTypeface(null, Typeface.NORMAL);

ตัวเลือกอื่นถ้าคุณต้องการเก็บแบบอักษรก่อนหน้าและไม่ต้องการสูญเสียการใช้ก่อนหน้านี้:

myTextView.setTypeface(textView.getTypeface(), Typeface.NORMAL);      
myTextView.setTypeface(textView.getTypeface(), Typeface.BOLD);        
myTextView.setTypeface(textView.getTypeface(), Typeface.ITALIC);      
myTextView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC); 

4
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);

เพื่อรักษาแบบอักษรก่อนหน้า

textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC)


3

วิธีที่ง่ายที่สุดที่คุณสามารถทำได้ตามเกณฑ์การเลือกสไตล์คือ:

String pre = "", post = "";

if(isBold){
    pre += "<b>"; post += "</b>";
}
if(isItalic){
    pre += "<i>"; post += "</i>";
}
if(isUnderline){
    pre += "<u>"; post += "</u>";
}

textView.setText(Html.fromHtml(pre + editText.getText().toString()+ post));
// you can also use it with EidtText
editText.setText(Html.fromHtml(pre + editText.getText().toString()+ post));

2

เนื่องจากฉันต้องการใช้แบบอักษรที่กำหนดเองการรวมหลายคำตอบใช้ได้กับฉันเท่านั้น เห็นได้ชัดว่าการตั้งค่าในสิ่งที่ฉันlayout.xmlชอบandroid:textStlyle="italic"ถูกละเลยโดย AOS ดังนั้นในที่สุดฉันก็ต้องทำดังนี้ในstrings.xmlสตริงเป้าหมายได้รับการประกาศเป็น:

<string name="txt_sign"><i>The information blah blah ...</i></string>

จากนั้นในรหัสเพิ่มเติม:

TextView textSign = (TextView) findViewById(R.id.txt_sign);
FontHelper.setSomeCustomFont(textSign);
textSign.setTypeface(textSign.getTypeface(), Typeface.ITALIC);

ฉันไม่ได้ลองSpannableตัวเลือก (ซึ่งฉันคิดว่าต้องทำงาน) แต่

textSign.setText(Html.fromHtml(getString(R.string.txt_sign))) 

ไม่มีผล นอกจากนี้ถ้าฉันลบออกitalic tagจากstrings.xmlการsetTypeface()อยู่คนเดียวก็ไม่มีผลเช่นกัน Android ที่ยากลำบาก ...


2

และตามที่อธิบายไว้ที่นี่Android Developers String Resourcesหากคุณต้องการใช้พารามิเตอร์ในแหล่งข้อความสไตล์ของคุณคุณจะต้องหลีกเลี่ยงวงเล็บเปิด

<resources>
<string name="welcome_messages">Hello, %1$s! You have &lt;b>%2$d new messages&lt;/b>.</string>
</resources>

และโทร formatHtml (สตริง)

Resources res = getResources();
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
CharSequence styledText = Html.fromHtml(text);

2

ในกรณีของฉัน:

1 - ตั้งค่าข้อความ

2 - ชุดแบบอักษร

holder.title.setText(item.nome);
holder.title.setTypeface(null, Typeface.BOLD);

1

นี่เป็นสิ่งเดียวที่ทำงานกับฉันใน OnePlus 5T ที่กำหนดค่าด้วยฟอนต์ OnePlus Slate ™:

textView.setTypeface(Typeface.create(textView.getTypeface(), useBold ? Typeface.BOLD : Typeface.NORMAL));

วิธีการอื่นจะทำให้ย้อนกลับไป Roboto เมื่อ BOLD หรือ NORMAL


1

ในขณะที่ใช้แท็กที่เรียบง่ายด้วย AndroidX ให้พิจารณาใช้HtmlCompat.fromHtml ()

String s = "<b>Bolded text</b>, <i>italic text</i>, even <u>underlined</u>!"    
TextView tv = (TextView)findViewById(R.id.THE_TEXTVIEW_ID);
tv.setText(HtmlCompat.fromHtml(s, FROM_HTML_MODE_LEGACY));

0

วิธีที่ดีที่สุดคือการกำหนดไว้ styles.xml

<style name="common_txt_style_heading" parent="android:style/Widget.TextView">
        <item name="android:textSize">@dimen/common_txtsize_heading</item>
        <item name="android:textColor">@color/color_black</item>
        <item name="android:textStyle">bold|italic</item>
</style>

และอัปเดตเป็น TextView

  <TextView
     android:id="@+id/txt_userprofile"
     style="@style/common_txt_style_heading"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_centerHorizontal="true"
     android:layout_marginTop="@dimen/margin_small"
     android:text="@string/some_heading" />

0
AppCompatTextView text =(AppCompatTextView)findViewById(R.layout.appCompatTextView1);
text.setTypeface(null,Typeface.BOLD);

ใช้วิธีการข้างต้นเพื่อตั้งค่าแบบอักษรโดยทางโปรแกรม


0

1) คุณสามารถตั้งค่าด้วย TypeFace 2) คุณสามารถใช้โดยตรง ใน strings.xml (ในโฟลเดอร์ค่าของคุณ) 3) คุณสามารถ String myNewString = "นี่คือข้อความตัวหนาของฉันนี่คือสตริงตัวเอียงของฉัน นี่คือสตริงที่ขีดเส้นใต้ของฉัน


0

คุณสามารถตั้งค่าแบบอักษรที่แตกต่างกันโดยใช้ตัวอย่างที่ระบุด้านล่าง -

textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);

หรือถ้าคุณต้องการตั้งค่าแบบอักษรและแบบอักษรอื่น เพิ่มลงในสินทรัพย์หรือโฟลเดอร์ raw แล้วใช้มัน

  Typeface face= Typeface.createFromAsset(getAssets(), "font/font.ttf");
  tv1.setTypeface(face);

  Typeface face1= Typeface.createFromAsset(getAssets(), "font/font1.ttf");
  tv2.setTypeface(face1);
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.