ฉันมี TextView และฉันต้องการเพิ่มสัญลักษณ์แสดงหัวข้อย่อยในข้อความของฉันผ่าน XML เป็นไปได้ไหม?
ฉันมี TextView และฉันต้องการเพิ่มสัญลักษณ์แสดงหัวข้อย่อยในข้อความของฉันผ่าน XML เป็นไปได้ไหม?
คำตอบ:
คุณต้องใช้การเข้ารหัสอักขระที่ถูกต้องเพื่อให้ได้ผลนี้ คุณสามารถลองด้วย•
เพียงเพื่อชี้แจง: ใช้setText("\u2022 Bullet");
เพื่อเพิ่มกระสุนโดยทางโปรแกรม0x2022 = 8226
setText("\u2022 Bullet");
เพื่อเพิ่มกระสุนโดยทางโปรแกรม 0x2022 = 8226
• = \u2022, ● = \u25CF, ○ = \u25CB, ▪ = \u25AA, ■ = \u25A0, □ = \u25A1, ► = \u25BA
สิ่งนี้ใช้ได้กับฉัน:
<string name="text_with_bullet">Text with a \u2022</string>
อาจเป็นทางออกที่ดีกว่าที่นั่น แต่นี่คือสิ่งที่ฉันทำ
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="First line"></TextView>
</TableRow>
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="Second line"></TextView>
</TableRow>
</TableLayout>
มันได้ผลเหมือนที่คุณต้องการ แต่เป็นวิธีการแก้ปัญหาจริงๆ
คุณอาจลองBulletSpanตามที่อธิบายไว้ในเอกสาร Android
SpannableString string = new SpannableString("Text with\nBullet point");
string.setSpan(new BulletSpan(40, color, 20), 10, 22, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
นี่คือวิธีที่ฉันลงเอยทำ
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/circle"
android:drawableStart="@drawable/ic_bullet_point" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Your text"
android:textColor="#000000"
android:textSize="14sp" />
</LinearLayout>
และรหัสสำหรับ drawbale / circle.xml คือ
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thickness="5dp"
android:useLevel="false">
<solid android:color="@color/black1" />
</shape>
ด้วย Unicode เราสามารถทำได้อย่างง่ายดาย แต่ถ้าต้องการเปลี่ยนสีของกระสุนฉันลองใช้กระสุนสีและตั้งเป็น drawable ซ้ายและใช้งานได้
<TextView
android:text="Hello bullet"
android:drawableLeft="@drawable/bulleticon" >
</TextView>
ตั้งแต่ android ไม่รองรับ<ol>, <ul> or <li>
องค์ประกอบ html ฉันต้องทำแบบนี้
<string name="names"><![CDATA[<p><h2>List of Names:</h2></p><p>•name1<br />•name2<br /></p>]]></string>
ถ้าคุณต้องการรักษาพื้นที่ที่กำหนดเองจากนั้นใช้ </pre> tag