I looked and tried a lot of things, but it seems my application does not get the values for the strings in strings.xml. It actually seems empty. I think the problem is initialized there.
strings.xml
<string name="itb_cityID">2</string>
<string name="itb_city">New York</string>
constants.java excerpt:
public class ConstantData {
public static String cityID="2";
public static String city="New York";
How to install cityID = R.strings.itb_cityIDand the city=itb_cityright way?
source
share