ฉันกำลังพัฒนาแอปพลิเคชันซึ่งจะมีหน้าจอค้นหาที่ผู้ใช้สามารถค้นหาคำหลักที่ต้องการได้และควรเน้นคำหลักนั้น ฉันพบเมธอด Html.fromHtml
แต่ฉันอยากรู้ว่ามันเป็นวิธีที่เหมาะสมในการทำหรือไม่
โปรดแจ้งให้เราทราบความคิดเห็นของคุณเกี่ยวกับเรื่องนี้
ฉันกำลังพัฒนาแอปพลิเคชันซึ่งจะมีหน้าจอค้นหาที่ผู้ใช้สามารถค้นหาคำหลักที่ต้องการได้และควรเน้นคำหลักนั้น ฉันพบเมธอด Html.fromHtml
แต่ฉันอยากรู้ว่ามันเป็นวิธีที่เหมาะสมในการทำหรือไม่
โปรดแจ้งให้เราทราบความคิดเห็นของคุณเกี่ยวกับเรื่องนี้
คำตอบ:
หรือง่ายกว่าการจัดการกับSpannable
s ด้วยตนเองเนื่องจากคุณไม่ได้บอกว่าคุณต้องการให้พื้นหลังถูกไฮไลต์เพียงแค่ข้อความ:
String styledText = "This is <font color='red'>simple</font>.";
textView.setText(Html.fromHtml(styledText), TextView.BufferType.SPANNABLE);
<span style="color:#ff0000;">
เพื่อให้ Android ไม่เปลี่ยนสี
การใช้ค่าสีจากทรัพยากร xml:
int labelColor = getResources().getColor(R.color.label_color);
String сolorString = String.format("%X", labelColor).substring(2); // !!strip alpha value!!
Html.fromHtml(String.format("<font color=\"#%s\">text</font>", сolorString), TextView.BufferType.SPANNABLE);
ซึ่งสามารถทำได้โดยใช้ Spannable String คุณจะต้องนำเข้าสิ่งต่อไปนี้
import android.text.SpannableString;
import android.text.style.BackgroundColorSpan;
import android.text.style.StyleSpan;
จากนั้นคุณสามารถเปลี่ยนพื้นหลังของข้อความโดยใช้สิ่งต่อไปนี้:
TextView text = (TextView) findViewById(R.id.text_login);
text.setText("");
text.append("Add all your funky text in here");
Spannable sText = (Spannable) text.getText();
sText.setSpan(new BackgroundColorSpan(Color.RED), 1, 4, 0);
ซึ่งจะเน้นตัวอักษรที่ตำแหน่ง 1 - 4 ด้วยสีแดง หวังว่านี่จะช่วยได้!
String name = modelOrderList.get(position).getName(); //get name from List
String text = "<font color='#000000'>" + name + "</font>"; //set Black color of name
/* check API version, according to version call method of Html class */
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.N) {
Log.d(TAG, "onBindViewHolder: if");
holder.textViewName.setText(context.getString(R.string._5687982) + " ");
holder.textViewName.append(Html.fromHtml(text));
} else {
Log.d(TAG, "onBindViewHolder: else");
holder.textViewName.setText("123456" + " "); //set text
holder.textViewName.append(Html.fromHtml(text, Html.FROM_HTML_MODE_LEGACY)); //append text into textView
}
ทางเลือกอื่น: ใช้ WebView แทน Html นั้นใช้งานง่าย
WebView webview = new WebView(this);
String summary = "<html><body>Sorry, <span style=\"background: red;\">Madonna</span> gave no results</body></html>";
webview.loadData(summary, "text/html", "utf-8");
แบบอักษรเลิกใช้แล้วให้ใช้ span แทน Html.fromHtml("<span style=color:red>"+content+"</span>")
เพื่อให้เป็นส่วนหนึ่งของข้อความของคุณที่ขีดเส้นใต้และสี
ใน strings.xml ของคุณ
<string name="text_with_colored_underline">put the text here and <u><font color="#your_hexa_color">the underlined colored part here<font><u></string>
จากนั้นในกิจกรรม
yourTextView.setText(Html.fromHtml(getString(R.string.text_with_colored_underline)));
และสำหรับลิงค์ที่คลิกได้:
<string name="text_with_link"><![CDATA[<p>text before link<a href=\"http://www.google.com\">title of link</a>.<p>]]></string>
และในกิจกรรมของคุณ:
yourTextView.setText(Html.fromHtml(getString(R.string.text_with_link)));
yourTextView.setMovementMethod(LinkMovementMethod.getInstance());
textview.setText(Html.fromHtml("<font color='rgb'>"+text contain+"</font>"));
มันจะให้สีตรงกับสิ่งที่คุณทำในโปรแกรมแก้ไข html เพียงแค่ตั้งค่า textview และเชื่อมต่อกับค่า textview Android ไม่รองรับช่วงสีเปลี่ยนเป็นสีแบบอักษรในตัวแก้ไขและคุณพร้อมที่จะไปแล้ว
ขั้นแรกให้แปลงสตริงของคุณเป็น HTML จากนั้นแปลงเป็น spannable ทำตามที่แนะนำรหัสต่อไปนี้
Spannable spannable = new SpannableString(Html.fromHtml(labelText));
spannable.setSpan(new ForegroundColorSpan(Color.parseColor(color)), spannable.toString().indexOf("•"), spannable.toString().lastIndexOf("•") + 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
การเพิ่มเวอร์ชัน Kotlin ด้วย:
strings.xml
)colors.xml
)fun getMulticolorSpanned(): Spanned {
// Get text from resources
val text: String = getString(R.string.your_text_from_resources)
// Get color from resources and parse it to HEX (RGB) value
val warningHexColor = getHexFromColors(R.color.your_error_color)
// Use above string & color in HTML
val html = "<string>$text<span style=\"color:#$warningHexColor;\">*</span></string>"
// Parse HTML (base on API version)
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY)
} else {
Html.fromHtml(html)
}
}
และส่วนขยาย Kotlin (ด้วยการลบอัลฟา):
fun Context.getHexFromColors(
colorRes: Int
): String {
val labelColor: Int = ContextCompat.getColor(this, colorRes)
return String.format("%X", labelColor).substring(2)
}