This is really doing my head in, I have been following these instructions but it won't work. Step three is causing me trouble. I'm note sure exactly what needs to be added where. It says;
"In the onCreate() method of your app instance, save your context (e.g. this) to a static >field named app and create a static method that returns this field, e.g. getApp():"
But I only have this at the top of my main java file:
protected static final String App = null;
The error I get is on this line, it says "The method getContext() is undefined for the type String":
String[] items = App.getContext().getResources().getStringArray(testholderint);
I figure the issues is with not following step three, and was wondering what exactly I need to add.
Once I've got this rectified my project is basically finished...