9

Previously I had a simple string-array that contained a URL it looked like

    <string-array name="drawerlinkitems">
      <item>http://www.google.com</item>
      <item>http://www.google2.com</item>
      <item>http://www.google3.com</item>
    </string-array>

and i was able to access the values with the call

return getResources().getStringArray(R.array.drawerlinkitems)[number];

pretty simple stuff.

my problem at this point is I want to do some more actions other than just grabbing the url, so i would like to build a nested array, like this:

<string-array name="draweritems">
    <item>
        <link>http://www.google.com</link>
        <title>Google</title>
        <icon>soon</icon>
    </item>
    <item>
        <link>http://www.google2.com</link>
        <title>Google2</title>
        <icon>soon</icon>
    </item>
    <item>
        <link>http://www.google3.com</link>
        <title>Google3</title>
        <icon>soon</icon>
    </item>
</string-array>

and then access it, using something like

getResources().getStringArray(R.array.draweritems)[number].getString[link];

or

getResources().getStringArray(R.array.draweritems)[number].getString[1];

(obviously i made the getString part up)

I can't figure out if it's even possible to do this in string-arrays, and if not what the replacement option is. If it is, i'm not sure exactly how to reference the string array to get the child values out of the item parent. i'm also not tied down to this type of solution if there's a superior way to do this that you know of. any help would be much appreciated.

Josh
  • 831
  • 1
  • 15
  • 31

1 Answers1

18

This is what I've done to accomplish something like this:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <array name="menu_items">
        <item>@array/menu_item_dashboard</item>
        <item>@array/menu_item_index</item>
    </array>

    <array name="menu_item_dashboard">
        <item>@drawable/transparent</item>
        <item>Dashboard</item>
        <item>home</item>
    </array>
    <array name="menu_item_index">
        <item>@drawable/transparent</item>
        <item>Title</item>
        <item>index</item>
    </array>
</resources>

And to access:

TypedArray menuResources = getResources().obtainTypedArray(R.array.menu_items);

TypedArray itemDef;

for (int i = 0; i < menuResources.length(); i++) {
    int resId = menuResources.getResourceId(i, -1);
    if (resId < 0) {
        continue;
    }

    itemDef = getResources().obtainTypedArray(resId);
    //itemDef.getDrawable(0)
    //itemDef.getString(1)
    //itemDef.getString(2)
}
mstrthealias
  • 2,781
  • 2
  • 22
  • 18
  • 1
    thank you so much. it's not completely ideal to what i had in mind, but that definitely appears to be an android limitation. this is definitely a better way of grouping things than any alternatives i've found. thanks again! – Josh Sep 10 '14 at 22:24