Android字符串资源网站不工作

时间:2017-04-30 23:16:34

标签: android xml string android-studio

每当我尝试从我的android资源字符串中读取网站时,我都会收到错误

<string name="API">http://google.com</string>

我的java代码是

String a =  getText(R.string.API).toString()+"search?q=";

2 个答案:

答案 0 :(得分:0)

尝试使用 getString(resId)而不是 getText() ,这可能有帮助。

String a =  getString(R.string.API)+"search?q=";

答案 1 :(得分:0)

这是无效的网址,“http://google.comsearch?q=”。

您必须在xml或java代码中添加斜杠(/)。

<string name="API">http://google.com/</string>

String a =  getText(R.string.API).toString()+"/search?q=";