<xliff:g>標簽介紹:
屬性id可以隨便命名
屬性example表示舉例說明,可以省略
%n$ms:代表輸出的是字符串,n代表是第幾個參數,設置m的值可以在輸出之前放置空格
%n$md:代表輸出的是整數,n代表是第幾個參數,設置m的值可以在輸出之前放置空格,也可以設為0m,在輸出之前放置m個0
%n$mf:代表輸出的是浮點數,n代表是第幾個參數,設置m的值可以控制小數位數,如m=2.2時,輸出格式為00.00
Android Plurals
用在一個單詞或者短語在單數和復數時拼寫不一樣的情況。
如:
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <plurals name="numberOfCars">
- <item quantity="one">%d car</item>
- <item quantity="other">%d cars</item>
- </plurals>
- </resources>
quantity屬性就是表示是單數還是復數
在代碼中:
- // Get the number of cars
- int count = getNumberOfCars();
- Resources res = getResources();
- // public String getQuantityString (int id, int quantity, Object... formatArgs)
- String cars = res.getQuantityString(R.plurals.numberOfCars, count, count);
來使用。