how to insert String in other string in Android ,I can use getString(R.string.xxx,"insert term")
but in java, how could I do it?
public class const() {
public static String rawWording = "here is % Text"
public void main() {
String text = "java";
String result = (const.rawWording, text);
}
}