I have a problem with a simple class that contains information that I will like to call from another class. For example here is the class Util which contains the info:
public class Util{
public ArrayList<RecetaBean> getRellenas() {
ArrayList<RecetaBean> MiLista = new ArrayList<RecetaBean>();
RecetaBean receta1 = new RecetaBean();
String ingrediente1[] = { getString(R.string.app_name),getString(R.string.app_name),
};
receta1.setIngredientesLista(ingrediente1);
MiLista.add(receta1);
MiLista.add(receta1);
MiLista.add(receta1);
return MiLista;
}
}
Then in another class I get the Items calling like this:
Util u = new Util();
ArrayList<RecetaBean> Recetas = u.getRellenas();
So, I have a execution problem in the class Util with the GETSTRING, because I would like to get a different string (because of different languages). The way to quit the error is to extend the class Util from Activity, but Util is not an Activity! And if I extend from Activity, the app crash.
Utilconstructor a reference to your Activity, orContextto be more precise. FromContextyou can accessgetStringmethod and localised strings. – harism Aug 27 '12 at 12:52