android向用户吐司中文消息

时间:2010-12-20 21:13:04

标签: android

基本上我需要向用户提供用中文写的消息。 但是我不知道如何实现这样的事情。 任何可以帮助我的解决方案?

2 个答案:

答案 0 :(得分:2)

我不是Android程序员,但这不起作用吗?

Context context = getApplicationContext();
CharSequence text = "中国的网页";
int duration = Toast.LENGTH_SHORT;

Toast toast = Toast.makeText(context, text, duration);
toast.show();

代码摘自here

(道歉,如果这意味着任何令人反感的话。我只是从here撕掉一些随机字符。)

答案 1 :(得分:1)

我找到了自己的答案。这很简单,我没有想到这一点。它总是有效的。 在Android项目的res / values / string.xml下,我编辑:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="sample">中国的网页</string>
</resources>

我使用以下方法从项目资源中检索字符串名称“sample”:

this.getString(R.string.sample);