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 ^^
As @Henry advised me, I have used getIdentifier with the next code:
list.add(getResources().getString(getResources().getIdentifier(ntpServers[i][0], "string", getPackageName())));
The problem was that the resource name that we need to find didn't needed the prefix "R.string", only the name.
Thanks to all.