I'm trying to get the strings from strings.xml file, but I get this error:java.lang.IllegalStateException: Fragment Ric_fragment{3975f30e} not attached to Activity
public class Ricerca_fragment_menu extends android.support.v4.app.Fragment {
private ListView lista;
String[] itemname ={
getResources().getString(R.string.ric_e),
getResources().getString(R.string.ric_u),
getResources().getString(R.string.ric_p),
getResources().getString(R.string.txt_c),
getResources().getString(R.string.ric_c),
getResources().getString(R.string.ben)
};
...