About Android strings.xml - Several principles you should know

About Android strings.xml - Several principles you should know

[[187865]]

Don't try to reuse

Do not reuse a string in different pages.

1. Suppose your login and registration pages both have a loading dialog box. Because both have loading interfaces, you decide to use the same string - R.string.loading.

But you never know when you will use a different string, then you will need to create two new strings and modify the Java code. If you use two strings from the beginning, you only need to modify the strings.xml file.

2. You never know which languages ​​your app will support. In one language - maybe you can use the same word in different contexts, but in another language different contexts may require different words.

Note that in the English version of strings.xml, both R.string.download_file_yes and R.string.terms_of_use_yes are the same word - "Yes".

But in Ukrainian version R.string.download_file_yes uses "Гаразд" and R.string.terms_of_use_yes uses "Так".

Separation

Strings on the same page are separated by prefixes and comments

Add a page prefix to each string, helping you immediately identify which page a string belongs to.

A clean strings.xml file helps you easily maintain and translate into different languages ​​- page by page.

Create a separate strings.xml file for each page

If you want to create a strings.xml file for each page, you can name it like this: settings-strings.xml, profile-strings.xml. But an app usually has 10 to 20 pages. So there will be 10 to 20 strings.xml files in each language directory, which I think brings confusion.

Format

Use Resources#getString(int id, Object… formatArgs) to format strings

Never use the + sign to concatenate strings, because different languages ​​have different word orders.

The correct way is to use Resources#getString(int id, Object… formatArgs).

plural

Use Resources#getQuantityString (int id, int quantity) to handle plural numbers

Never resolve pluralization issues in Java code, because the grammatical rules for pluralization are different in different languages.

The correct way is to use Resources#getQuantityString(int id, int quantity).

Note: For more information about the getQuantityString method, see: Android Quantity Strings getQuantityString method value problem

Word highlighting

Use html text to highlight static words

If you want to change color of some words in TextView - ForegroundColorSpan is not always the best choice, because its highlighting is done by index and it is not safe in multi-language. Use html's font color tag in strings.xml file.

Suppose you have a text that says “Discover and play games.” You want the words “Discover” and “play” to appear in blue.

<<:  The fourth episode of the Aiti tribe consultation: Application scenarios and functions of Java message queues

>>:  The fourth session of the Aiti Tribe Technical Clinic

Recommend

Example analysis: How to write a product data report?

Product data reporting is an essential task for p...

What should I do if Juleliang Qianchuan fails the review?

What should I do if Juleliang Qianchuan fails the...

How does the wedding photography industry use TikTok? Case Study

"For wedding photos that only happen once in...

Zhang Xiaolong: Get out of loneliness

[[127969]] Today, as the commercial value of WeCh...

How to select parameter configuration for Kuaishou short video server?

How to select parameter configuration for Kuaisho...

Which one is better, negative keywords or exact negative keywords?

Through the search term report, we can see whethe...

Trader System Operation Course, Professional Trader-Transaction Process

Trader System Trading Course, Professional Trader...

Let’s talk about how to recommend and promote good products on Zhihu in 2021!

This article mainly explains the Red Ocean strate...

New ways to play with WeChat Mini Programs in the wedding industry

The wedding industry is becoming more and more po...

How to use Xiaohongshu for promotion and marketing?

Xiaohongshu is very popular now, and major beauty...

How much does it cost to develop a candied fruit mini program in Anqing?

For entrepreneurs, although mini program developm...

10 ways to increase APP download and registration rate!

On my first day at work in 2019, I was assigned n...