मैंने अपने प्रश्न को टाल दिया है, लेकिन उपलब्ध जवाब का काम नहीं कर रहा है। मेरे टेक्स्टव्यू में बुलेटेड सूची कैसे जोड़ सकते हैं।
मैंने अपने प्रश्न को टाल दिया है, लेकिन उपलब्ध जवाब का काम नहीं कर रहा है। मेरे टेक्स्टव्यू में बुलेटेड सूची कैसे जोड़ सकते हैं।
जवाबों:
उल / ली / ओल के रूप में करने के लिए कठिन समर्थित नहीं हैं। सौभाग्य से आप इसे सिंटैक्टिक शुगर के रूप में उपयोग कर सकते हैं:
• foo<br/>
• bar<br/>
• baz<br/>
•
एक सूची बुलेट के लिए HTML इकाई है और अधिक विकल्प यहाँ हैं http://www.elizabethcastro.com/html/extras/entities.html
मार्क मर्फी (@CommonsWare) http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html द्वारा प्रदान किए जाने वाले टैग के बारे में और अधिक जानकारी लोड करें।
((TextView)findViewById(R.id.my_text_view)).setText(Html.fromHtml(myHtmlString));
<string name="string_name"><![CDATA[ • foo<br /> • bar... ]]></string>
ब्राउप ने HTML पर अच्छा तरीका बताया। HTML इकाई के साथ प्रदान किया गया समाधान उपयोगी हो सकता है। लेकिन इसमें केवल बुलेट शामिल है। यदि आपका पाठ लपेटता है, तो इंडेंट सही नहीं होगा।
मैंने एक वेब दृश्य को एम्बेड करने वाले अन्य समाधान पाए। हो सकता है कि कुछ के लिए उपयुक्त हो, लेकिन मुझे लगता है कि इसकी तरह का ओवरकिल ... (एक सूची दृश्य का उपयोग करने के साथ ही।)
मुझे नेल्सन का रचनात्मक दृष्टिकोण पसंद है : डी, लेकिन यह आपको एक पाठ दृश्य में एक अनियंत्रित सूची को जोड़ने की संभावना नहीं देता है।
बुलेटस्पैन का उपयोग करके गोलियों के साथ एक अनियंत्रित सूची का मेरा उदाहरण
CharSequence t1 = getText(R.string.xxx1);
SpannableString s1 = new SpannableString(t1);
s1.setSpan(new BulletSpan(15), 0, t1.length(), 0);
CharSequence t2 = getText(R.string.xxx2);
SpannableString s2 = new SpannableString(t2);
s2.setSpan(new BulletSpan(15), 0, t2.length(), 0);
textView.setText(TextUtils.concat(s1, s2));
सकारात्मक:
नकारात्मक:
मुझे एक विकल्प मिल गया है .. बस इस बुलेट को कॉपी करें "•" (यह एक टेक्स्ट है) और अपने टेक्स्ट व्यू के टेक्स्ट में पेस्ट करें, आप टेक्स्ट कलर बदलकर बुलेट कलर बदल सकते हैं और साथ ही आकार, ऊँचाई चौड़ाई जैसी अन्य सभी विशेषताओं को बदल सकते हैं। .. :)
टाइपिंग के दौरान आप इस बुलेट को प्राप्त करने के लिए शॉर्ट-कट का उपयोग कर सकते हैं
विंडोज के लिए
ALT + 7
मैक के लिए
ALT + 8
यहाँ विभिन्न उत्तरों से प्रेरित होकर, मैंने इसे एक आसान लाइनर बनाने के लिए एक उपयोगिता वर्ग बनाया । यह लिपटे पाठ के लिए इंडेंटेशन के साथ एक बुलेटेड सूची बनाएगा। इसमें स्ट्रिंग्स, स्ट्रिंग संसाधनों और स्ट्रिंग सरणी संसाधनों के संयोजन के तरीके हैं।
यह एक CharSequence बनाएगा जिसे आप TextView में पास कर सकते हैं। उदाहरण के लिए:
CharSequence bulletedList = BulletListUtil.makeBulletList("First line", "Second line", "Really long third line that will wrap and indent properly.");
textView.setText(bulletedList);
आशा है कि यह उपयोगी है। का आनंद लें।
नोट: यह सिस्टम मानक बुलेट का उपयोग करेगा, पाठ के समान एक छोटा सर्कल। यदि आप एक कस्टम बुलेट चाहते हैं, तो बुलेटस्पैन को उप- वर्गित करने पर विचार करें और अपनी drawLeadingMargin()
इच्छित बुलेट को ओवरराइड करें । एक विचार के लिए BulletSpan स्रोत पर एक नज़र डालें कि यह कैसे काम करता है।
public class BulletTextUtil {
/**
* Returns a CharSequence containing a bulleted and properly indented list.
*
* @param leadingMargin In pixels, the space between the left edge of the bullet and the left edge of the text.
* @param context
* @param stringArrayResId A resource id pointing to a string array. Each string will be a separate line/bullet-point.
* @return
*/
public static CharSequence makeBulletListFromStringArrayResource(int leadingMargin, Context context, int stringArrayResId) {
return makeBulletList(leadingMargin, context.getResources().getStringArray(stringArrayResId));
}
/**
* Returns a CharSequence containing a bulleted and properly indented list.
*
* @param leadingMargin In pixels, the space between the left edge of the bullet and the left edge of the text.
* @param context
* @param linesResIds An array of string resource ids. Each string will be a separate line/bullet-point.
* @return
*/
public static CharSequence makeBulletListFromStringResources(int leadingMargin, Context context, int... linesResIds) {
int len = linesResIds.length;
CharSequence[] cslines = new CharSequence[len];
for (int i = 0; i < len; i++) {
cslines[i] = context.getString(linesResIds[i]);
}
return makeBulletList(leadingMargin, cslines);
}
/**
* Returns a CharSequence containing a bulleted and properly indented list.
*
* @param leadingMargin In pixels, the space between the left edge of the bullet and the left edge of the text.
* @param lines An array of CharSequences. Each CharSequences will be a separate line/bullet-point.
* @return
*/
public static CharSequence makeBulletList(int leadingMargin, CharSequence... lines) {
SpannableStringBuilder sb = new SpannableStringBuilder();
for (int i = 0; i < lines.length; i++) {
CharSequence line = lines[i] + (i < lines.length-1 ? "\n" : "");
Spannable spannable = new SpannableString(line);
spannable.setSpan(new BulletSpan(leadingMargin), 0, spannable.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
sb.append(spannable);
}
return sb;
}
}
यह अब तक सबसे आसान है ..
<string name="bullet_ed_list">\n\u2022 He has been Chairman of CFL Manufacturers Committee of ELCOMA, the All India Association of Lighting Equipment Manufacturers.
\n\u2022 He has been the President of Federation of Industries of India (FII).</string>
रेडी-टू-यूज़ कोटलिन एक्सटेंशन
fun List<String>.toBulletedList(): CharSequence {
return SpannableString(this.joinToString("\n")).apply {
this@toBulletedList.foldIndexed(0) { index, acc, span ->
val end = acc + span.length + if (index != this@toBulletedList.size - 1) 1 else 0
this.setSpan(BulletSpan(16), acc, end, 0)
end
}
}
}
उपयोग:
val bulletedList = listOf("One", "Two", "Three").toBulletedList()
label.text = bulletedList
रंग और आकार:
बुलेट कलर या साइज़ बदलने के लिए BulletSpan के बजाय CustomBulletSpan का उपयोग करें
package com.fbs.archBase.ui.spans
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
import android.text.Layout
import android.text.Spanned
import android.text.style.LeadingMarginSpan
import androidx.annotation.ColorInt
class CustomBulletSpan(
private val bulletRadius: Int = STANDARD_BULLET_RADIUS,
private val gapWidth: Int = STANDARD_GAP_WIDTH,
@ColorInt private val circleColor: Int = STANDARD_COLOR
) : LeadingMarginSpan {
private companion object {
val STANDARD_BULLET_RADIUS = Screen.dp(2)
val STANDARD_GAP_WIDTH = Screen.dp(8)
const val STANDARD_COLOR = Color.BLACK
}
private val circlePaint = Paint().apply {
color = circleColor
style = Paint.Style.FILL
isAntiAlias = true
}
override fun getLeadingMargin(first: Boolean): Int {
return 2 * bulletRadius + gapWidth
}
override fun drawLeadingMargin(
canvas: Canvas, paint: Paint, x: Int, dir: Int,
top: Int, baseline: Int, bottom: Int,
text: CharSequence, start: Int, end: Int,
first: Boolean,
layout: Layout?
) {
if ((text as Spanned).getSpanStart(this) == start) {
val yPosition = (top + bottom) / 2f
val xPosition = (x + dir * bulletRadius).toFloat()
canvas.drawCircle(xPosition, yPosition, bulletRadius.toFloat(), circlePaint)
}
}
}
एक विकल्प जो मैंने उपयोग किया था वह एक शैली का उपयोग करके बुलेट को खींचने योग्य सेट करना था।
<style name="Text.Bullet">
<item name="android:background">@drawable/bullet</item>
<item name="android:paddingLeft">10dp</item>
</style>
उपयोग:
<TextView android:id="@+id/tx_hdr"
android:text="Item 1" style="@style/Text.Bullet" />
android:drawableLeft=
एक कंपाउंड ड्रॉबल के साथ साधारण टेक्स्ट व्यू का उपयोग करें। उदाहरण के लिए
<TextView
android:text="Sample text"
android:drawableLeft="@drawable/bulletimage" >
</TextView>
यहां एक और समाधान है, एक टेक्स्टव्यू में एक सूची को बिल्कुल नहीं जोड़ना, लेकिन मुझे लगता है कि लक्ष्य समान है। यह TableLayout का उपयोग कर रहा है, जिसे केवल XML की आवश्यकता है और यह छोटे ऑर्डर या अनऑर्डर किए गए सूचियों के लिए वास्तव में सरल है। नीचे, नमूना कोड मैंने इसके लिए उपयोग किया था, जावा में कोड की एक पंक्ति नहीं।
सकारात्मक:
नकारात्मक:
प्रत्येक सूची आइटम को एक अलग स्ट्रिंग संसाधन के रूप में संग्रहीत किया जाता है
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="0.2"
android:text="1." />
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="3"
android:text="@string/help_points1" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="0.2"
android:text="2." />
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="3"
android:text="@string/help_points2" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="0.2"
android:text="3." />
<TextView
style="@style/helpPagePointsStyle"
android:layout_weight="3"
android:text="@string/help_points3" />
</TableRow>
</TableLayout>
और शैली:
<style name="helpPagePointsStyle">
<item name="android:layout_width">0dp</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:gravity">left</item>
</style>
यहां एक हेडर के साथ एक बुलेटेड सूची है और प्रत्येक आइटम के सामने एक टैब है।
public class BulletListBuilder {
private static final String SPACE = " ";
private static final String BULLET_SYMBOL = "•";
private static final String EOL = System.getProperty("line.separator");
private static final String TAB = "\t";
private BulletListBuilder() {
}
public static String getBulletList(String header, String []items) {
StringBuilder listBuilder = new StringBuilder();
if (header != null && !header.isEmpty()) {
listBuilder.append(header + EOL + EOL);
}
if (items != null && items.length != 0) {
for (String item : items) {
Spanned formattedItem = Html.fromHtml(BULLET_SYMBOL + SPACE + item);
listBuilder.append(TAB + formattedItem + EOL);
}
}
return listBuilder.toString();
}
}
पूरी तरह से खत्म हो गया और एक कस्टम पाठ दृश्य बना।
इसे इस तरह उपयोग करें:
<com.blundell.BulletTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="--bullet 1 --bullet two --bullet three --bullet four" />
और कोड:
package com.blundell;
import android.content.Context;
import android.text.Html;
import android.util.AttributeSet;
import android.widget.TextView;
public class BulletTextView extends TextView {
private static final String SPLITTER_CHAR = "--";
private static final String NEWLINE_CHAR = "<br/>";
private static final String HTML_BULLETPOINT = "•";
public BulletTextView(Context context, AttributeSet attrs) {
this(context, attrs, android.R.attr.textViewStyle);
}
public BulletTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
checkForBulletPointSplitter();
}
private void checkForBulletPointSplitter() {
String text = (String) getText();
if (text.contains(SPLITTER_CHAR)) {
injectBulletPoints(text);
}
}
private void injectBulletPoints(String text) {
String newLinedText = addNewLinesBetweenBullets(text);
String htmlBulletText = addBulletPoints(newLinedText);
setText(Html.fromHtml(htmlBulletText));
}
private String addNewLinesBetweenBullets(String text) {
String newLinedText = text.replace(SPLITTER_CHAR, NEWLINE_CHAR + SPLITTER_CHAR);
newLinedText = newLinedText.replaceFirst(NEWLINE_CHAR, "");
return newLinedText;
}
private String addBulletPoints(String newLinedText) {
return newLinedText.replace(SPLITTER_CHAR, HTML_BULLETPOINT);
}
}
•
आपको दूसरे प्रतीक fsymbols.com/signs/bullet-point
मुझे यह सबसे आसान तरीका लगता है, textView को छोड़ दें क्योंकि यह xml फ़ाइल में है और निम्न जावा कोड का उपयोग करें। यह मेरे लिए बिल्कुल ठीक काम किया।
private static final String BULLET_SYMBOL = "•";
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tutorial);
TextView tv = (TextView) findViewById(R.id.yourTextView);
tv.setText("To perform this exercise you will need the following: "
+ System.getProperty("line.separator")//this takes you to the next Line
+ System.getProperty("line.separator")
+ Html.fromHtml(BULLET_SYMBOL + " Bed")
+ System.getProperty("line.separator")
+ Html.fromHtml(BULLET_SYMBOL + " Pillow"));
}
बुलेट वाली सूची बस का उपयोग करके बनाया जा सकता है <ul>
और<li>
स्ट्रिंग संसाधन में टैग ।
कोड में स्ट्रिंग सेट करने के लिए सेटटेक्स्ट (Html.fromHtml (स्ट्रिंग)) का उपयोग न करें ! बस स्ट्रिंग को सामान्य रूप से xml में सेट करें या सेटटेक्स्ट ( स्ट्रिंग ) का उपयोग करके ।
उदाहरण के लिए:
strings.xml फ़ाइल
<string name="str1">
<ul>
<li><i>first</i> item</li>
<li>item 2</li>
</ul>
</string>
लेआउट। xml फ़ाइल
<TextView
android:text="@string/str1"
/>
यह निम्नलिखित परिणाम देगा:
निम्नलिखित टैग इस तरह समर्थित हैं (सीधे स्ट्रिंग संसाधन में एम्बेडेड):
<ul>
\n<ul><li>a</li> \n<li>b</li> \n<li>c</li></ul>
single line text
आप के लिए बस चित्र का उपयोग कर सकते हैं:
<TextView
android:id="@+id/txtData"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableStart="@drawable/draw_bullet_list"
android:drawablePadding="@dimen/padding_8dp"
android:text="Hello"
android:textColor="@color/colorBlack" />
draw_bullet_list.xml :
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@color/colorAccent" />
<size
android:width="12dp"
android:height="12dp" />
</shape>
आप बदल सकते हैं shape
, size
, color
आपकी आवश्यकता के आधार पर।
बुलेटेड सूची करने के लिए आपके पास दो विकल्प हैं
विकल्प 1 सबसे आसान है।
यदि आप editText संरचना के साथ बुलेट सूची बनाना चाहते हैं।
मुझे इस संदर्भ में फायदा हुआ
आप इस गोलियों का उपयोग कर सकते हैं
EditText edtNoteContent = findViewById(R.id.editText_description_note);
edtNoteContent.addTextChangedListener(new TextWatcher(){
@Override
public void afterTextChanged(Editable e) {
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
}
@Override
public void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter)
{
if (lengthAfter > lengthBefore) {
if (text.toString().length() == 1) {
text = "◎ " + text;
edtNoteContent.setText(text);
edtNoteContent.setSelection(edtNoteContent.getText().length());
}
if (text.toString().endsWith("\n")) {
text = text.toString().replace("\n", "\n◎ ");
text = text.toString().replace("◎ ◎", "◎");
edtNoteContent.setText(text);
edtNoteContent.setSelection(edtNoteContent.getText().length());
}
}
}
});