วิธีการตั้งค่าTextView
สไตล์ (ตัวหนาหรือตัวเอียง) ภายใน Java และไม่ใช้รูปแบบ XML?
กล่าวอีกนัยหนึ่งฉันต้องเขียนandroid:textStyle
ด้วย Java
วิธีการตั้งค่าTextView
สไตล์ (ตัวหนาหรือตัวเอียง) ภายใน Java และไม่ใช้รูปแบบ XML?
กล่าวอีกนัยหนึ่งฉันต้องเขียนandroid:textStyle
ด้วย Java
คำตอบ:
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)
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL);
TextView
จะไม่ลบจัดแต่งทรงผมหนาหรือตัวเอียงจาก คุณจะต้องใช้textView.setTypeface(null, Typeface.NORMAL);
สิ่งนั้น
textView.setTypeface(Typeface.create(textView.getTypeface(), Typeface.NORMAL), Typeface.NORMAL);
ลองใช้วิธีนี้เพื่อตั้งค่าTextView
เป็นตัวหนาหรือตัวเอียง
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
tv.setTypeface(Typeface.create(tv.getTypeface(), Typeface.NORMAL));
tv.setTypeface(null, Typeface.BOLD);
นี้จะไม่ทำเช่นเดียวกัน (ล้างสไตล์แบบอักษรที่มีอยู่) หรือไม่
คุณสามารถเขียนโปรแกรมโดยใช้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 ใน<TextView />
ลักษณะ:
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
with in Java and without using XML
โดยวิธีการมันจะช่วยให้ผู้อื่นด้วย
คุณมีสองทางเลือก:
ตัวเลือก 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 ; มันมีความซับซ้อนมากขึ้น แต่คุณสามารถปรับเปลี่ยนคุณลักษณะข้อความแบบไดนามิก (ไม่เพียง แต่ตัวหนา / ตัวเอียงและสี)
typeFace
คุณสามารถกำหนดรูปแบบเดียวสำหรับข้อความทั้งหมด
คุณสามารถเขียนโปรแกรมโดยใช้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 ใน<TextView />
ลักษณะนี้:
android:textStyle="normal"
android:textStyle="normal|bold"
android:textStyle="normal|italic"
android:textStyle="bold"
android:textStyle="bold|italic"
หรือคุณสามารถตั้งค่าแบบอักษรที่ชอบ (จากเนื้อหา) สำหรับข้อมูลเพิ่มเติมดูลิงค์
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
เพียงแค่ถ้าคุณต้องการให้ข้อความที่เป็นตัวหนา เขียนบรรทัดนี้ในเลย์เอาต์ของคุณในคุณสมบัติมุมมองข้อความ
android:textStyle="bold"
TextView text = (TextView)findViewById(R.layout.textName);
text.setTypeface(null,Typeface.BOLD);
มันจะเป็น
yourTextView.setTypeface(null,Typeface.DEFAULT_BOLD);
และเอียงควรจะสามารถที่จะอยู่กับการแทนที่ด้วยTypeface.DEFAULT_BOLD
Typeface.DEFAULT_ITALC
ให้ฉันรู้ว่ามันทำงานอย่างไร
ลองทำสิ่งนี้เพื่อกำหนดTextView
สไตล์ของคุณด้วยรหัสจาวา
txt1.setTypeface(null,Typeface.BOLD_ITALIC);
ใช้ในการให้บริการแบบชุดของtextView.setTypeface(Typeface tf, int style);
TextView
ดูเอกสารประกอบสำหรับนักพัฒนาสำหรับข้อมูลเพิ่มเติม
ลองสิ่งนี้:
textView.setTypeface(textView.getTypeface(), Typeface.BOLD);
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC);
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC);
ลองสิ่งนี้:
TextView textview = (TextView)findViewById(R.id.textview_idname);
textview.setTypeface(null,Typeface.BOLD);
วิธีมาตรฐานในการทำเช่นนี้คือการใช้สไตล์ที่กำหนดเอง อดีต
ในการ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" />
วิธีหนึ่งที่คุณสามารถทำได้คือ:
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);
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)
คุณสามารถลองสิ่งนี้:
<string name="title"><u><b><i>Your Text</i></b></u></string>
วิธีที่ง่ายที่สุดที่คุณสามารถทำได้ตามเกณฑ์การเลือกสไตล์คือ:
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));
เนื่องจากฉันต้องการใช้แบบอักษรที่กำหนดเองการรวมหลายคำตอบใช้ได้กับฉันเท่านั้น เห็นได้ชัดว่าการตั้งค่าในสิ่งที่ฉัน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 ที่ยากลำบาก ...
และตามที่อธิบายไว้ที่นี่Android Developers String Resourcesหากคุณต้องการใช้พารามิเตอร์ในแหล่งข้อความสไตล์ของคุณคุณจะต้องหลีกเลี่ยงวงเล็บเปิด
<resources>
<string name="welcome_messages">Hello, %1$s! You have <b>%2$d new messages</b>.</string>
</resources>
และโทร formatHtml (สตริง)
Resources res = getResources();
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
CharSequence styledText = Html.fromHtml(text);
ในกรณีของฉัน:
1 - ตั้งค่าข้อความ
2 - ชุดแบบอักษร
holder.title.setText(item.nome);
holder.title.setTypeface(null, Typeface.BOLD);
นี่เป็นสิ่งเดียวที่ทำงานกับฉันใน OnePlus 5T ที่กำหนดค่าด้วยฟอนต์ OnePlus Slate ™:
textView.setTypeface(Typeface.create(textView.getTypeface(), useBold ? Typeface.BOLD : Typeface.NORMAL));
วิธีการอื่นจะทำให้ย้อนกลับไป Roboto เมื่อ BOLD หรือ NORMAL
ในขณะที่ใช้แท็กที่เรียบง่ายด้วย 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));
วิธีที่ดีที่สุดคือการกำหนดไว้ 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" />
AppCompatTextView text =(AppCompatTextView)findViewById(R.layout.appCompatTextView1);
text.setTypeface(null,Typeface.BOLD);
ใช้วิธีการข้างต้นเพื่อตั้งค่าแบบอักษรโดยทางโปรแกรม
1) คุณสามารถตั้งค่าด้วย TypeFace 2) คุณสามารถใช้โดยตรง ใน strings.xml (ในโฟลเดอร์ค่าของคุณ) 3) คุณสามารถ String myNewString = "นี่คือข้อความตัวหนาของฉันนี่คือสตริงตัวเอียงของฉัน นี่คือสตริงที่ขีดเส้นใต้ของฉัน
คุณสามารถตั้งค่าแบบอักษรที่แตกต่างกันโดยใช้ตัวอย่างที่ระบุด้านล่าง -
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);