Android中動態修改string.xml中字串的內容

來源:互聯網
上載者:User

有些朋友可能會動態修改Android中strings.xml檔案中的值,在這裡給大家推薦一種簡單的方法。
strings.xml中節點是支援預留位置的,如下所示:

<string
name="data">整數型:%1$d,浮點型:%2$.2f,字串:%3$s</string>

其中%後面是預留位置的位置,從1開始,

      $ 後面是填充資料的類型
         %d:表示整數型;
         %f :表示浮點型,其中f前面的.2表示小數的位元
         %c:表示字串
這些和C語言中輸入輸出函數的預留位置很相似

在程式中我們可以通過下面的代碼對字串進行格式化,也就是填充預留位置中的內容:

String data = getResources().getString(R.string.data);
data = String.format(data,
100,
10.3, "2011-07-01");

最後運行結果如下:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.