Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot I do a getResources.getString dynamically?

I'm trying to fill a Spinner with the values of some Strings of string.xml. I'm trying to do like that:

   final List<String> list = new ArrayList<String>();
   for (int i = 0; i < 86; i++) {
      String resource = "R.string." + ntpServers[i][0];
      list.add(getResources().getString(resource));
   }

I have strings like the next ones.

<string name="AT">Austria</string>
<string name="BY">Belarus</string>
<string name="BE">Belgium</string>

And from a Geocoder I get a country code like AT, BY, etc. Which are stored in the ntpServers array. I want to fill the spinner with the name saved in the correspondent string, but I cannot do getResources().getString(resource) because resource is a String not an int.

How can I solve this?

Thanks for your advices.

P.D.:

I get the next sequence:

For Example:

geocoder.getCountry() = ES --> ntpServers[36][0] = ES --> R.string.ES = """Spain""" 

Which is the string that I want in the spinner.

____________________________

This is what I'm trying to do now. I'm using getIdentifier.

final List<String> list = new ArrayList<String>();
for (int i = 0; i < 86; i++) {
   String resource = "R.string." + ntpServers[i][0];
   Log.i("RESOURCE", resource);
   Log.i("getResource", "" + getResources().getIdentifier(resource, "string", getPackageName()));
                list.add(getResources().getString(getResources().getIdentifier(resource, "string", getPackageName())));
}

And this is the log cat

09-18 19:32:43.815: I/RESOURCE(31268): R.string.Global
09-18 19:32:43.815: I/getResource(31268): 0
09-18 19:32:43.815: W/ResourceType(31268): No package identifier when getting value for resource number 0x00000000
09-18 19:32:43.815: D/AndroidRuntime(31268): Shutting down VM
09-18 19:32:43.815: W/dalvikvm(31268): threadid=1: thread exiting with uncaught exception (group=0x40fa92a0)
09-18 19:32:43.815: E/AndroidRuntime(31268): FATAL EXCEPTION: main
09-18 19:32:43.815: E/AndroidRuntime(31268): android.content.res.Resources$NotFoundException: String resource ID #0x0
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.content.res.Resources.getText(Resources.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.content.res.Resources.getString(Resources.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at victor.martin.gplace.MainActivity$3.run(MainActivity.java:790)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.os.Handler.handleCallback(Handler.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.os.Handler.dispatchMessage(Handler.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.os.Looper.loop(Looper.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at android.app.ActivityThread.main(ActivityThread.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at java.lang.reflect.Method.invokeNative(Native Method)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at java.lang.reflect.Method.invoke(Method.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
09-18 19:32:43.815: E/AndroidRuntime(31268):    at dalvik.system.NativeStart.main(Native Method)

And this is the R.java:

public static final class string {
        public static final int AE=0x7f080049;
        public static final int AO=0x7f08005b;
        ...
        public static final int Global=0x7f080008;

Let's see if you can guide me more.

Eternal Thanks ^^

like image 311
Víctor Martín Avatar asked Sep 18 '13 17:09

Víctor Martín


1 Answers

Use string-array like

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="item">
        <item>AT</item>
        <item>BY</item>
        <item>BE</item>
    </string-array>
</resources>


Resources res = getResources();
String[] array = res.getStringArray(R.array.item);

convert Array to List

List list = Arrays.asList(array);

/* According to your requirement */ In order to solve your issue use HashMap which keep data in the form of key value pair.

public HashMap<String, String> getCountryCode() {
        HashMap<String, String> countryCode = new HashMap<String, String>();
        countryCode.put("IN", "INDIA");
        countryCode.put("ES", "Spain");
        countryCode.put("USA", "United States of America");

        return countryCode;
    }

String countryName= getCountryCode().get(geocoder.getCountry());

Hope this will solve your problem.

like image 120
Amit Gupta Avatar answered Oct 15 '22 08:10

Amit Gupta