I've looked and tried many things but it seems my App isn't getting the values for strings in strings.xml. It actually seems like it's passing blank. I think there's an issue initializing.
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 do I set cityID = R.strings.itb_cityID and city=itb_city the correct way?