Android字符串网址不起作用

时间:2015-10-13 21:18:28

标签: php android

我有PHP脚本获取请求的名称值来打印值。但似乎当我尝试使用这个

String URL_FEED = "http://brmhelpdesk.x10host.com/android_function/messages.php?name='" + NAME + "'"; //NAME = "1";

它没有用,但是当我使用这个

String URL_FEED = "http://brmhelpdesk.x10host.com/android_function/messages.php?name='" + "1" + "'";

它的工作正常我的问题是为什么我不能使用声明的String?

Java代码

final String uid = user.get("id"); //tried for SQLiteDB
uidd.setText(uid); // tried for TextView
NAME = uidd.getText().toString(); //String declared String NAME = "";

0 个答案:

没有答案