Building a multi-language application in Java. Getting an error when inserting String value from R.string resource XML file:
R.string
public static final
You can either make your variable non static
public final String TTT = (String) getText(R.string.TTT);
or make the "getText" method static (if at all possible)