คุณจะพิมพ์สตริงด้วยตัวห้อยหรือตัวยกได้อย่างไร? คุณสามารถทำได้โดยไม่ต้องใช้ไลบรารีภายนอกหรือไม่? ฉันต้องการให้สิ่งนี้แสดงTextView
ใน Android
คุณจะพิมพ์สตริงด้วยตัวห้อยหรือตัวยกได้อย่างไร? คุณสามารถทำได้โดยไม่ต้องใช้ไลบรารีภายนอกหรือไม่? ฉันต้องการให้สิ่งนี้แสดงTextView
ใน Android
คำตอบ:
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
หรือ
ตัวอย่าง:
equation = (TextView) findViewById(R.id.textView1);
SpannableStringBuilder cs = new SpannableStringBuilder("X3 + X2");
cs.setSpan(new SuperscriptSpan(), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new RelativeSizeSpan(0.75f), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new SuperscriptSpan(), 6, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new RelativeSizeSpan(0.75f), 6, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
equation.setText(cs);
equation.setText(blah+cs);
มันไม่ได้ผล ทำงานได้ดีแยกกันแม้ว่า วิธีการรับงานนั้น?
สำหรับทุกคนที่ถามว่าหากคุณต้องการทำให้เล็กลงนอกเหนือจากการทำ super หรือ subscript คุณก็ต้องเพิ่มแท็กด้วย EX:
"X <sup><small> 2 </small></sup>"
ในโค้ดให้ใส่ "\ u00B2" ดังนี้:
textView.setText("X\u00B2");
หากคุณต้องการตั้งค่าตัวยกจากไฟล์ string.xml ให้ลองทำดังนี้:
ทรัพยากรสตริง:
<string name="test_string">X<sup>3</sup></string>
หากคุณต้องการให้ตัวยกเล็กลง:
<string name="test_string">X<sup><small>3</small></sup></string>
รหัส:
textView.setText(Html.fromHtml("Anything you want to put here"+getString(R.string.test_string)));
มันช้าไปหน่อย แต่หลังจากทำงานได้ดีใช้ตัวยกเป็นอักขระพิเศษฉันใช้อักขระเว้นวรรคที่นี่
<string name="str">H₂</string>
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup><small>2</small></sup>"));
(หรือ) จากไฟล์ทรัพยากรสตริง:
<string name="test_string">
<![CDATA[ X<sup><small>2</small></sup> ]]>
</string>
คำตอบที่ยอมรับได้เลิกใช้งานแล้ว ดังนั้นโปรดอ่านโค้ดส่วนนี้ ฉันได้รับสิ่งนี้จากบางเว็บไซต์ ฉันลืมชื่อ แต่ยังไงก็ขอบคุณสำหรับรหัสการทำงานที่ดีนี้
SpannableString styledString
= new SpannableString("Large\n\n" // index 0 - 5
+ "Bold\n\n" // index 7 - 11
+ "Underlined\n\n" // index 13 - 23
+ "Italic\n\n" // index 25 - 31
+ "Strikethrough\n\n" // index 33 - 46
+ "Colored\n\n" // index 48 - 55
+ "Highlighted\n\n" // index 57 - 68
+ "K Superscript\n\n" // "Superscript" index 72 - 83
+ "K Subscript\n\n" // "Subscript" index 87 - 96
+ "Url\n\n" // index 98 - 101
+ "Clickable\n\n"); // index 103 - 112
// make the text twice as large
styledString.setSpan(new RelativeSizeSpan(2f), 0, 5, 0);
// make text bold
styledString.setSpan(new StyleSpan(Typeface.BOLD), 7, 11, 0);
// underline text
styledString.setSpan(new UnderlineSpan(), 13, 23, 0);
// make text italic
styledString.setSpan(new StyleSpan(Typeface.ITALIC), 25, 31, 0);
styledString.setSpan(new StrikethroughSpan(), 33, 46, 0);
// change text color
styledString.setSpan(new ForegroundColorSpan(Color.GREEN), 48, 55, 0);
// highlight text
styledString.setSpan(new BackgroundColorSpan(Color.CYAN), 57, 68, 0);
// superscript
styledString.setSpan(new SuperscriptSpan(), 72, 83, 0);
// make the superscript text smaller
styledString.setSpan(new RelativeSizeSpan(0.5f), 72, 83, 0);
// subscript
styledString.setSpan(new SubscriptSpan(), 87, 96, 0);
// make the subscript text smaller
styledString.setSpan(new RelativeSizeSpan(0.5f), 87, 96, 0);
// url
styledString.setSpan(new URLSpan("http://www.google.com"), 98, 101, 0);
// clickable text
ClickableSpan clickableSpan = new ClickableSpan() {
@Override
public void onClick(View widget) {
// We display a Toast. You could do anything you want here.
Toast.makeText(MainActivity.this, "Clicked", Toast.LENGTH_SHORT).show();
}
};
styledString.setSpan(clickableSpan, 103, 112, 0);
// Give the styled string to a TextView
spantext = (TextView) findViewById(R.id.spantext);
// this step is mandated for the url and clickable styles.
spantext.setMovementMethod(LinkMovementMethod.getInstance());
// make it neat
spantext.setGravity(Gravity.CENTER);
spantext.setBackgroundColor(Color.WHITE);
spantext.setText(styledString);
หมายเหตุ:ใส่android:textAllCaps="false"
Spantext ของคุณเสมอ
HTML.fromHTML (String) เลิกใช้แล้วเมื่อ API 24 พวกเขาบอกว่าให้ใช้อันนี้แทนซึ่งรองรับแฟล็กเป็นพารามิเตอร์ เพื่อหลีกเลี่ยงคำตอบที่ยอมรับ:
TextView textView = ((TextView)findViewById(R.id.text));
textView.setText(Html.fromHtml("X<sup>2</sup>", Html.FROM_HTML_MODE_LEGACY));
และหากคุณต้องการรหัสที่พิจารณา API ก่อน 24 ปีด้วย:
TextView textView = ((TextView)findViewById(R.id.text));
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
textView.setText(Html.fromHtml("X<sup>2</sup>", Html.FROM_HTML_MODE_LEGACY));
} else {
textView.setText(Html.fromHtml("X<sup>2</sup>"));
}
คำตอบนี้ได้มาจาก: https://stackoverflow.com/a/37905107/4998704
ดูแฟล็กและเอกสารอื่น ๆ ได้ที่นี่: https://developer.android.com/reference/android/text/Html.html
สำหรับ "a" คัดลอกและวาง "ᵃ" นี้
คุณสามารถคัดลอกและวาง Superscripts และ Subscripts เหล่านี้ลงในทรัพยากรสตริงของ Android ได้โดยตรง
ตัวอย่าง:
<string name="word_with_superscript" translatable="false">Trademark ᵀᴹ</string>
ผลลัพธ์: เครื่องหมายการค้าᵀᴹ
ตัวยกและตัวห้อย
ทุนตัวยก ᴬᴮᴰᴱᴳᴴᴵᴶᴷᴸᴹᴺᴼᴾᴿᵀᵁⱽ
ตัวย่อตัวยก ᵃᵇᶜᵈᵉᶠᵍʰⁱʲᵏˡᵐⁿᵒᵖʳˢᵗᵘᵛʷˣʸᶻ
ตัวย่อตัว ย่อₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓ
ในstrings.xml
ไฟล์คุณสามารถใช้ HTML<sup>3</sup>
แท็กทำงานได้อย่างสมบูรณ์แบบสำหรับฉัน
ตัวอย่าง
<string name="turnoverRate">Turnover rate m<sup>3</sup>/m<sup>2</sup>/hour:</string>
พวกเขาเรียกว่าอักขระ Unicode และ Android TextView
รองรับ คัดลอก super / sub-script ที่คุณต้องการจาก Wiki นี้: https://en.wikipedia.org/wiki/List_of_Unicode_characters#Superscripts_and_Subscripts
yourTextView.setText(Html.fromHtml("X<sup>2</sup>"));
This will be the result in you yourTextView =
X 2