android strings plural

Solutions on MaxInterview for android strings plural by the best coders in the world

showing results for - "android strings plural"
Catalina
10 Mar 2016
1<plurals name="test0">
2  <item quantity="one">Test ok</item>
3  <item quantity="other">Tests ok</item>
4</plurals>
5
6// Use case
7int count=3;
8getResources().getQuantityString(R.plurals.test0, count);
similar questions
queries leading to this page
android strings plural