Guest User

Untitled

a guest
Jul 18th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <plurals name="count_files">
  2. <item quantity="one">%d file</item>
  3. <item quantity="other">%d files</item>
  4. <item quantity="zero">%d files</item>
  5. </plurals>
  6.  
  7. <plurals name="count_folders">
  8. <item quantity="one">%d folder</item>
  9. <item quantity="other">%d folders</item>
  10. <item quantity="zero">%d folders</item>
  11. </plurals>
  12.  
  13. textView.setText(getResources().getQuantityString(R.plurals.count_folders, countfolders, countfolders) + ", " + getResources().getQuantityString(R.plurals.count_files, countfiles, countfiles));
Add Comment
Please, Sign In to add comment