ユーザーが特定のキーワードを検索できる検索画面があり、そのキーワードを強調表示する必要があるアプリケーションを開発しています。 Html.fromHtmlメソッドを見つけました。
しかし、それが適切な方法であるかどうかを知りたいです。
これに関するあなたの意見を教えてください。
または、Spannable
sを手動で処理するよりもはるかに簡単です。背景を強調表示する必要はなく、テキストだけを強調表示する必要があるからです。
String styledText = "This is <font color='red'>simple</font>.";
textView.setText(Html.fromHtml(styledText), TextView.BufferType.SPANNABLE);
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);
これは、スパンナブル文字列を使用して実現できます。以下をインポートする必要があります
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);
これにより、pos 1-4の文字が赤い色で強調表示されます。お役に立てれば!
代替ソリューション:代わりに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");
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
}
フォントは非推奨です。代わりにHtml.fromHtml("<span style=color:red>"+content+"</span>")
を使用してください
textview.setText(Html.fromHtml("<font color='rgb'>"+text contain+"</font>"));
これは、htmlエディターで作成したものとまったく同じ色を提供し、textviewを設定して、textview値と連結します。 Androidはスパンカラーをサポートしていません。エディターでフォントカラーに変更すると、すべての設定が完了します。
テキストに下線を付けて色を付けるには
あなたの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());