Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
248 views
in Technique[技术] by (71.8m points)

android - Get resource ID from value

I do have a lot of language specific resources. There's one point in my Android apps where I do get a resource value and need to translate this value into the matching id. The value is not necessarily in the language specific file for the current language (en/de/...). It's somewhere in there ... and it's unique.

After reading the docs and this thread "How to get a resource id with a known resource name?" I thought that getIdentifier(String name, String defType, String defPackage) is the correct way to go but I can't get it to work. The result is always "0".

This code is part of an activity and I'm on Android 2.2.

Is it possible that Android doesn't take all resource files into account and searches just in the current language specific one?

For an example (current language is "de"):

File: values-en/strings.xml
<resources>
   <string name="txt_afirsttext">A first text</string>
   <string name="txt_asecondtext">A second text</string>
</resources>

File: values-de/strings.xml
<resources>
   <string name="txt_afirsttext">Ein erster Text</string>
   <string name="txt_asecondtext">Ein zweiter Text</string>
</resources>

// Now I want to find the ID to this "en" text ...
String testValue = "A second text";
int i = this.getResources().getIdentifier(testValue, "strings", this.getPackageName());

// ... and translate it to the actual "de" language
String translatedValue = this.getResources().getString(i);

To make things clear. I don't want to miss-use string resources as a database. It's only one part that occurs on very rare situations.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are using the getIdentifier wrong. You don't specify the text but the identifier of the text, in your case that would be txt_afirsttext or txt_asecondtext.

int i = this.getResources().
             getIdentifier("txt_asecondtext", "string", this.getPackageName());

I think there's no way to locate a String resource identifier by its content. It would be like passing a byte stream to locate a drawable.

Does your application really need this weird way of getting resources? I'm quite sure you could use a better approach to dynamically load resources, though your first paragraph describes your scenario as a mysterious one :)

edit: Answer fixed. Thanks to tdroza for the correction.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...