文字列を下付きまたは上付きで印刷するにはどうすればよいですか?外部ライブラリなしでこれを実行できますか?これをAndroidのTextView
に表示したいです。
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
または
例:
equation = (TextView) findViewById(R.id.textView1);
SpannableStringBuilder cs = new SpannableStringBuilder("X3 + X2");
cs.setSpan(new SuperscriptSpan(), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new RelativeSizeSpan(0.75f), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new SuperscriptSpan(), 6, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new RelativeSizeSpan(0.75f), 6, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
equation.setText(cs);
質問するすべての人に、上付き文字または下付き文字を作成する以外に小さくしたい場合は、タグも追加するだけです。例:
"X <sup><small> 2 </small></sup>"
コードでは、この「\ u00B2」を次のように入力します。
textView.setText("X\u00B2");
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup><small>2</small></sup>"));
(または)文字列リソースファイルから:
<string name="test_string">
<![CDATA[ X<sup><small>2</small></sup> ]]>
</string>
String.xmlファイルから上付き文字を設定する場合は、これを試してください。
文字列リソース:
<string name="test_string">X<sup>3</sup></string>
上付き文字を小さくしたい場合:
<string name="test_string">X<sup><small>3</small></sup></string>
コード:
textView.setText(Html.fromHtml("Anything you want to put here"+getString(R.string.test_string)));
少し遅れましたが、次は正常に機能し、上付き文字を特殊文字として使用し、ここでは空間文字を使用しました。
<string name="str">H₂</string>
承認済みの回答は非推奨になりました。そのため、このコードをご覧ください。これはいくつかのウェブサイトから入手しました。名前を忘れましたが、とにかくこの作業コードの良い部分をありがとう。
SpannableString styledString
= new SpannableString("Large\n\n" // index 0 - 5
+ "Bold\n\n" // index 7 - 11
+ "Underlined\n\n" // index 13 - 23
+ "Italic\n\n" // index 25 - 31
+ "Strikethrough\n\n" // index 33 - 46
+ "Colored\n\n" // index 48 - 55
+ "Highlighted\n\n" // index 57 - 68
+ "K Superscript\n\n" // "Superscript" index 72 - 83
+ "K Subscript\n\n" // "Subscript" index 87 - 96
+ "Url\n\n" // index 98 - 101
+ "Clickable\n\n"); // index 103 - 112
// make the text twice as large
styledString.setSpan(new RelativeSizeSpan(2f), 0, 5, 0);
// make text bold
styledString.setSpan(new StyleSpan(Typeface.BOLD), 7, 11, 0);
// underline text
styledString.setSpan(new UnderlineSpan(), 13, 23, 0);
// make text italic
styledString.setSpan(new StyleSpan(Typeface.ITALIC), 25, 31, 0);
styledString.setSpan(new StrikethroughSpan(), 33, 46, 0);
// change text color
styledString.setSpan(new ForegroundColorSpan(Color.GREEN), 48, 55, 0);
// highlight text
styledString.setSpan(new BackgroundColorSpan(Color.CYAN), 57, 68, 0);
// superscript
styledString.setSpan(new SuperscriptSpan(), 72, 83, 0);
// make the superscript text smaller
styledString.setSpan(new RelativeSizeSpan(0.5f), 72, 83, 0);
// subscript
styledString.setSpan(new SubscriptSpan(), 87, 96, 0);
// make the subscript text smaller
styledString.setSpan(new RelativeSizeSpan(0.5f), 87, 96, 0);
// url
styledString.setSpan(new URLSpan("http://www.google.com"), 98, 101, 0);
// clickable text
ClickableSpan clickableSpan = new ClickableSpan() {
@Override
public void onClick(View widget) {
// We display a Toast. You could do anything you want here.
Toast.makeText(MainActivity.this, "Clicked", Toast.LENGTH_SHORT).show();
}
};
styledString.setSpan(clickableSpan, 103, 112, 0);
// Give the styled string to a TextView
spantext = (TextView) findViewById(R.id.spantext);
// this step is mandated for the url and clickable styles.
spantext.setMovementMethod(LinkMovementMethod.getInstance());
// make it neat
spantext.setGravity(Gravity.CENTER);
spantext.setBackgroundColor(Color.WHITE);
spantext.setText(styledString);
注:常にAndroid:textAllCaps="false"
スパンテキストの。
HTML.fromHTML(String)はAPI 24で廃止されました。代わりに、パラメーターとしてフラグをサポートするこのAPIを使用するように言われています。したがって、受け入れられた答えから離れるには:
TextView textView = ((TextView)findViewById(R.id.text));
textView.setText(Html.fromHtml("X<sup>2</sup>", Html.FROM_HTML_MODE_LEGACY));
また、24以前のAPIも考慮したコードが必要な場合:
TextView textView = ((TextView)findViewById(R.id.text));
if (Android.os.Build.VERSION.SDK_INT >= Android.os.Build.VERSION_CODES.N) {
textView.setText(Html.fromHtml("X<sup>2</sup>", Html.FROM_HTML_MODE_LEGACY));
} else {
textView.setText(Html.fromHtml("X<sup>2</sup>"));
}
この回答は以下から派生しました: https://stackoverflow.com/a/37905107/4998704
フラグおよびその他のドキュメントは、ここにあります: https://developer.Android.com/reference/Android/text/Html.html
Spannable
または文字列リソースファイルの使用方法に関する記事 this を見つけました:<sup>
または <sub>
はそれぞれ上付き文字と下付き文字です。
これらはUnicode文字と呼ばれ、Android TextView
はそれらをサポートしています。このWikiから必要なスーパー/サブスクリプトをコピーします。 https://en.wikipedia .org/wiki/List_of_Unicode_characters#Superscripts_and_Subscripts
の中に strings.xml
ファイル、HTMLを使用できます<sup>3</sup>
鬼ごっこ。私のために完璧に働く
[〜#〜] example [〜#〜]
<string name="turnoverRate">Turnover rate m<sup>3</sup>/m<sup>2</sup>/hour:</string>