您好,我已经成功本地化了我的应用程序(使用翻译编辑器) 我已经将所有字符串都放在strings.xml文件中,等等 之后,我以编程方式更改了程序语言,所有程序均成功翻译,但由于setText,我的textView无法翻译。
TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
setContentView(R.layout.activity_question);
text.setText(getResources().getString(R.string.Male1));