How to iterate the keys in a Resource fie (.rrc) in a loop & how do I get the length or the no. of elements in the resource file, I mean the end of the file ?
I want to iterate through Resource file as at Run-time I m getting a String which I want to compare with all the Resource KEYs & if the String which I got matches with any of the KEY then its corresponding VALUE is fetched using ,
currentValue = _resources.getString(KEY);
So I m trying to iterate through it using
for(int i=0; i< (get Resource total Length); i++)
{
key = (get Resource KEY)
if(string.equals(key))
currentValue = _resources.getString(key);
}
but I m not getting "how to get Resource total length (no of elements in Resource file) & its KEY".
any solution for these issues ?
Since it isn't an order list of resources on the implementation side, there really isn't a way to do exactly what you are asking. However, you could put all your elements into an array within the resource and then easily work with those resources in the code like you would work with any other array. Here's the syntax for declaring an array within a resource file: