मुझे हर बार कोड के माध्यम से ऐसा करने का विचार पसंद नहीं आया, जबकि मैं अपने सभी ऐप में बहुत कुछ कर रहा हूं (और कुछ मामलों में टेक्स्ट को अलग-अलग इनलाइन के साथ रनटाइम में सेट किया जा रहा है- परिभाषित रंग) तो मैंने अपना खुद का बनाया MarkableTextView
।
यह विचार था:
- स्ट्रिंग से XML टैग का पता लगाएं
- टैग नाम की पहचान करें और मिलान करें
- पाठ की विशेषताओं और स्थिति को निकालें और सहेजें
- टैग निकालें और सामग्री रखें
- विशेषताओं के माध्यम से अलग करें और शैलियों को लागू करें
यहाँ प्रक्रिया चरण दर चरण है:
पहले मुझे एक दिए गए स्ट्रिंग में XML टैग खोजने का एक तरीका चाहिए Regex
था और यह ट्रिक किया ..
<([a-zA-Z]+(?:-[a-zA-Z0-9]+)*)(?:\s+([^>]*))?>([^>][^<]*)</\1\s*>
एक XML टैग से मेल खाने के लिए इसके ऊपर निम्न मापदंड होने चाहिए:
- मान्य टैग नाम जैसे
<a>
<a >
<a-a>
<a ..attrs..>
लेकिन नहीं< a>
<1>
- वह टैग बंद करना जिसका मिलान नाम जैसा हो,
<a></a>
लेकिन नहीं<a></b>
- कोई भी सामग्री, क्योंकि "कुछ भी नहीं" शैली की आवश्यकता नहीं है
अब विशेषताओं के लिए हम इस एक का उपयोग करने जा रहे हैं ..
([a-zA-Z]+)\s*=\s*(['"])\s*([^'"]+?)\s*\2
इसकी एक ही अवधारणा है और आमतौर पर मुझे दोनों के लिए दूर जाने की आवश्यकता नहीं थी क्योंकि कंपाइलर बाकी का ध्यान रखेगा अगर कुछ भी प्रारूप से बाहर जाता है।
अब हमें एक ऐसा वर्ग चाहिए जो निकाले गए डेटा को पकड़ सके:
public class MarkableSheet {
private String attributes;
private String content;
private int outset;
private int ending;
private int offset;
private int contentLength;
public MarkableSheet(String attributes, String content, int outset, int ending, int offset, int contentLength) {
this.attributes = attributes;
this.content = content;
this.outset = outset;
this.ending = ending;
this.offset = offset;
this.contentLength = contentLength;
}
public String getAttributes() {
return attributes;
}
public String getContent() {
return content;
}
public int getOutset() {
return outset;
}
public int getContentLength() {
return contentLength;
}
public int getEnding() {
return ending;
}
public int getOffset() {
return offset;
}
}
कुछ और करने से पहले, हम इस शांत पुनरावृत्ति को जोड़ने जा रहे हैं जिसका उपयोग मैं मैचों के माध्यम से लंबे समय तक लूप के लिए कर रहा हूं (लेखक को याद नहीं कर सकता) :
public static Iterable<MatchResult> matches(final Pattern p, final CharSequence input) {
return new Iterable<MatchResult>() {
public Iterator<MatchResult> iterator() {
return new Iterator<MatchResult>() {
// Use a matcher internally.
final Matcher matcher = p.matcher(input);
// Keep a match around that supports any interleaving of hasNext/next calls.
MatchResult pending;
public boolean hasNext() {
// Lazily fill pending, and avoid calling find() multiple times if the
// clients call hasNext() repeatedly before sampling via next().
if (pending == null && matcher.find()) {
pending = matcher.toMatchResult();
}
return pending != null;
}
public MatchResult next() {
// Fill pending if necessary (as when clients call next() without
// checking hasNext()), throw if not possible.
if (!hasNext()) { throw new NoSuchElementException(); }
// Consume pending so next call to hasNext() does a find().
MatchResult next = pending;
pending = null;
return next;
}
/** Required to satisfy the interface, but unsupported. */
public void remove() { throw new UnsupportedOperationException(); }
};
}
};
}
MarkableTextView:
public class MarkableTextView extends AppCompatTextView {
public MarkableTextView(Context context) {
super(context);
}
public MarkableTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MarkableTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void setText(CharSequence text, BufferType type) {
// Intercept and process text
text = prepareText(text.toString());
super.setText(text, type);
}
public Spannable Markable;
private Spannable prepareText(String text) {
String parcel = text;
Multimap<String, MarkableSheet> markableSheets = ArrayListMultimap.create();
// Used to correct content position after tossing tags
int totalOffset = 0;
// Iterate through text
for (MatchResult match : matches(Markable.Patterns.XML, parcel)) {
// Get tag name
String tag = match.group(1);
// Match with a defined tag name "case-sensitive"
if (!tag.equals(Markable.Tags.MARKABLE)) {
// Break if no match
break;
}
// Extract data
String attributes = match.group(2);
String content = match.group(3);
int outset = match.start(0);
int ending = match.end(0);
int offset = totalOffset; // offset=0 since no preceded changes happened
int contentLength = match.group(3).length();
// Calculate offset for the next element
totalOffset = (ending - outset) - contentLength;
// Add to markable sheets
MarkableSheet sheet =
new MarkableSheet(attributes, content, outset, ending, offset, contentLength);
markableSheets.put(tag, sheet);
// Toss the tag and keep content
Matcher reMatcher = Markable.Patterns.XML.matcher(parcel);
parcel = reMatcher.replaceFirst(content);
}
// Initialize spannable with the modified text
Markable = new SpannableString(parcel);
// Iterate through markable sheets
for (MarkableSheet sheet : markableSheets.values()) {
// Iterate through attributes
for (MatchResult match : matches(Markable.Patterns.ATTRIBUTES, sheet.getAttributes())) {
String attribute = match.group(1);
String value = match.group(3);
// Apply styles
stylate(attribute,
value,
sheet.getOutset(),
sheet.getOffset(),
sheet.getContentLength());
}
}
return Markable;
}
अंत में, स्टाइलिंग, इसलिए यहाँ एक बहुत ही सरल स्टाइलर है जिसे मैंने इस उत्तर के लिए बनाया है:
public void stylate(String attribute, String value, int outset, int offset, int length) {
// Correct position
outset -= offset;
length += outset;
if (attribute.equals(Markable.Tags.TEXT_STYLE)) {
if (value.contains(Markable.Tags.BOLD) && value.contains(Markable.Tags.ITALIC)) {
Markable.setSpan(
new StyleSpan(Typeface.BOLD_ITALIC),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
else if (value.contains(Markable.Tags.BOLD)) {
Markable.setSpan(
new StyleSpan(Typeface.BOLD),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
else if (value.contains(Markable.Tags.ITALIC)) {
Markable.setSpan(
new StyleSpan(Typeface.ITALIC),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
if (value.contains(Markable.Tags.UNDERLINE)) {
Markable.setSpan(
new UnderlineSpan(),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}
if (attribute.equals(Markable.Tags.TEXT_COLOR)) {
if (value.equals(Markable.Tags.ATTENTION)) {
Markable.setSpan(
new ForegroundColorSpan(ContextCompat.getColor(
getContext(),
R.color.colorAttention)),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
else if (value.equals(Markable.Tags.INTERACTION)) {
Markable.setSpan(
new ForegroundColorSpan(ContextCompat.getColor(
getContext(),
R.color.colorInteraction)),
outset,
length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}
}
और यहाँ Markable
परिभाषाओं वाला वर्ग कैसा दिखता है:
public class Markable {
public static class Patterns {
public static final Pattern XML =
Pattern.compile("<([a-zA-Z]+(?:-[a-zA-Z0-9]+)*)(?:\\s+([^>]*))?>([^>][^<]*)</\\1\\s*>");
public static final Pattern ATTRIBUTES =
Pattern.compile("(\\S+)\\s*=\\s*(['\"])\\s*(.+?)\\s*\\2");
}
public static class Tags {
public static final String MARKABLE = "markable";
public static final String TEXT_STYLE = "textStyle";
public static final String BOLD = "bold";
public static final String ITALIC = "italic";
public static final String UNDERLINE = "underline";
public static final String TEXT_COLOR = "textColor";
public static final String ATTENTION = "attention";
public static final String INTERACTION = "interaction";
}
}
अब हमें एक स्ट्रिंग का संदर्भ देना होगा और मूल रूप से इस तरह दिखना चाहिए:
<string name="markable_string">
<![CDATA[Hello <markable textStyle=\"underline\" textColor=\"interaction\">world</markable>!]]>
</string>
टैग को एक के साथ लपेटें CDATA Section
और "
साथ भागने से सुनिश्चित करें\
।
मैंने इसे अनावश्यक कोड को भरवाने की आवश्यकता के बिना सभी अलग-अलग तरीकों से पाठ के कुछ हिस्सों को संसाधित करने के लिए एक मॉड्यूलर समाधान के रूप में बनाया।