一部のボタンのテキストを動的に変更したい。必要なテキストはすべてstrings.xmlに保存され、参照名はJsonオブジェクトに保存されます。
setText 関数の string.xml からデータを取得する方法を知っている人はいますか?
JSONObject e = Options.getJSONObject(i);
//The Name for strings.xml
String name = e.getString("name");
Resources res = getResources();
button1.setText(String.format(res.getString(R.string. ??????????? )));