Quantization string: Android authoritative programming 13.7 challenge exercise-optimize string resource display

Source: Internet
Author: User

Notice that there is only one crime record, and the subtitle showing the total number of records is displayed: 1 crimes. Please correct this careless grammatical error.
In the implementation of the idea, you can prepare different string resources in the code to use, but this will give the application localization manufacturing trouble. It is good practice to use complex string resources (also known as quantization strings).
First, the complex string resource is defined in the Strings.xml file.

<plurals name= "subtitle_plural" ><item quantity= "one" >%1$s crime</item><item quantity= "other" >%1$s crimes</item></plurals>

Then, use the Getquantitystring method to correctly handle the single complex problem.

1 int crimesize = crimelab.getcrimes (). Size (); 2 String subtitle = getresources ()3 . getquantitystring (R.plurals.subtitle_plural, Crimesize, crimesize);

Quantization string: Android authoritative programming 13.7 challenge exercise-optimize string resource display

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.