格式金額字符串
回答
Android智能手機支持標或上標寫任何文字。 您可以
Html.fromHtml("<sup>$</sup>1,500<sup>00</sup>");
儘量不使用HTML標籤,您可以訪問Subscript and Superscript a String in Android
它的工作原理,但我需要的解決方案,除了HTML標籤。 –
@ V.J。看這裏例如https://stackoverflow.com/a/8872986/3383038 –
@OlegOsipenko良好的信息。 –
//對於標和下標可以採取HTML標記的幫助下
String yourText="$1,050<sup>00</sup>";
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
yourTextView.setText(Html.fromHtml(yourText,Html.FROM_HTML_MODE_LEGACY))
} else {
yourTextView.setText(Html.fromHtml(yourText));
}
剛過去,它複製您的佈局中:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_centerHorizontal="true"
android:layout_height="match_parent">
<TextView
android:id="@+id/dollar"
android:text="$"
android:textSize="40dp"
android:gravity="top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:layout_toRightOf="@+id/dollar"
android:id="@+id/ammount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="80dp"
android:layout_marginTop="-10dp"
android:text="1,050"/>
<TextView
android:layout_toRightOf="@+id/ammount"
android:id="@+id/zeroes"
android:text="00"
android:textSize="40dp"
android:gravity="top"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
@ V.J。如果是你需要的,請接受 –
哦對不起。這是良好的嘗試,但不適合我。因爲我不得不改變我的佈局。 –
- 1. 如何從格式化字符串中提取貨幣金額?
- 2. 從特定字符串獲取金額
- 3. 價格字符串分成金額和貨幣
- 4. 使用HTML標記格式化字符串中的美元金額
- 5. 正則表達式從字符串中獲取金額沒有貨幣符號
- 6. 字符串格式
- 7. 字符串格式
- 8. 格式字符串
- 9. 格式字符串
- 10. 格式字符串
- 11. 從格式化金額提取貨幣
- 12. php echo貨幣格式加上金額
- 13. 打印號碼時的金額格式
- 14. 表示具有典型金額格式
- 15. 實時格式化美元金額
- 16. 字符串格式符號
- 17. 使用字符串格式給出字符串值的格式
- 18. 字符串格式化在格式化整個字符串
- 19. 如何將字符串格式化爲金錢
- 20. 格式化printf和額外的字符串打印?
- 21. 如何在javascript/jquery中添加字符串美元金額?
- 22. 從字符串中刪除一筆金額 - Javascript
- 23. 有沒有解決方案將字符串轉換爲金額?
- 24. 將字符串轉換爲SQL Server中的金額
- 25. 分裂貨幣及金額從字符串
- 26. 從字符串中移除貨幣金額
- 27. 從字符串中提取美元金額 - PHP中的正則表達式
- 28. 時間格式和字符串格式
- 29. Reg格式的字符串格式
- 30. C++貸款合格金額
這可能需要募集的美元符號和零專門的字體。 –