-1

这是一个示例代码:

toastMessage = "Data added successfully";
...  
Toast.makeText(this, toastMessage, Toast.LENGTH_SHORT).show();

这样,用户只能English languageandroid.

谢谢。

4

1 回答 1

1

string.xml您可以在代码中使用来自(和所有其他资源)的字符串。

Toast.makeText(this, R.string.string_id, Toast.LENGTH_SHORT).show();

或者对于其他不能直接使用 id 的地方:

context.getString(R.string.string_id)
于 2017-04-03T14:54:42.207 回答