Android 中的字串下標和上標
挑戰: 在Android 中顯示帶有下標或上標字元的字串TextView 是一項常見任務。是否可以在不依賴外部程式庫的情況下實現此目的?
答案: 是的,可以使用 Html.fromHtml() 方法在 Android 中本機對字串新增下標或上標。
解決方案:
顯示帶有a 的字串下標,使用以下語法:
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
這將導致字串「 X²”顯示在TextView 中。
另一個選項是使用以下語法:
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("Common Tasks and How to Do Them in Android"));
這將導致字串「Common Tasks and How to Do Them in Android」顯示在 TextView 中。
以上是如何在沒有外部函式庫的情況下在 Android TextView 中新增下標和上標文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!