String Placeholders or Formatting strings in android

Updated 22 December 2016

Save

In this blog,

we will get interact with the string placeholder. And see, is it possible to Concatenate multiple strings in XML?
OR
How to reference one string from another string in strings.xml?

 

What we can’t do

If we want to Concatenate multiple strings in XML? or reference one string from another string in strings.xml? so what we can’t do with the strings,

Because here it will search for a String with reference @string/music Pop which does not exist.

So what we can do to want string placeholders which can be change dynamically.

What We can do, the “String Formatting”

“Formatting strings”, If you need to format your strings using String.format(String, Object…), then you can do so by putting your format arguments in the string resource. For example, with the following resource:

In this example, the format string has two arguments: %1$s is a string and %2$d is a decimal number. You can format the string with arguments from your application like this:

So what can we do with music string,

in java file,

Example:

output: Rock Music

output: Pop Music

 

Refrence: 

https://developer.android.com

 

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home