我希望我的alertDialog這個樣子 如何顯示與顏色alertDialog.setMessage()在Android的
我的API是26字符串變量,這是我到目前爲止的代碼
alertDialog.setTitle("Warning");
alertDialog.setMessage(Html.fromHtml("Are you sure"+"\n"+"\n"+"<font color='#00bfff'><br><br><b>Est. Total Cost : $ 9.00 </b></font>",Build.VERSION.SDK_INT));
正如你所看到的,我只是把9.00直接放在字符串中。 現在,我想讓9.00一個名爲estCost的字符串變量,可以根據我的代碼中的計算進行更改。
如何在alertDialog.setMessage()中顯示「顏色字符串變量」estCost?
我曾嘗試下面的代碼
String estCost = calculate(10) //calculate method will return a double in string.
alertDialog.setTitle("Warning");
alertDialog.setMessage(Html.fromHtml("Are you sure"+"\n"+"\n"+"<font color='#00bfff'><br><br><b>Est. Total Cost : $ <var> estCost </var></b></font>",Build.VERSION.SDK_INT));
但它不工作。請幫幫我 !謝謝。
'「+ estCost +」' –
Dope !!!!!! 我節省了我的一天兄弟〜 我已經在互聯網上搜索它。 你剛殺死它真的很快〜謝謝 –