如何将字符串变量放入以下代码中,请帮帮我。
parameters.putString("attachment","{\"name\":\"Facebook application By Martin\",\"href\":\"http://www.google.com/\",\"caption\":\"By Google Technology \",\"description\":\"Description\",\"media\":[{\"type\":\"image\",\"src\":\"http://4.bp.blogspot.com/-9RPH9UGDSsE/TcGjy3fAHlI/AAAAAAAAAeI/kuQXLE_G5Ew/s1600/Flag+Wallpaper+of+India+%25283%2529.jpg\",\"href\":\"http://s.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"for more tips click here\",\"href\":\"http://www.google.com/\"}}}");
我在Facebook Wall上使用Above Code上传图片。但我想使用字符串变量&从变量传递跟随路径。
先谢谢。
答案 0 :(得分:1)
我建议您参考此链接:String Resources in Android。
现在,只需在给定链接中查看此示例:
在strings.xml中定义以下字符串:
<string name="welcome_messages">Hello, %1$s! You have %2$d new messages.</string>
现在,从活动类,您可以获取字符串并将参数值传递为:
Resources res = getResources();
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
所以这是您参考的基本示例。
您还可以在strings.xml中定义字符串值,并根据您的要求传递参数。
答案 1 :(得分:0)
String myPath = "http://4.bp.blogspot.com/-9RPH9UGDSsE/TcGjy3fAHlI/AAAAAAAAAeI/kuQXLE_G5Ew/s1600/Flag+Wallpaper+of+India+%25283%2529.jpg";
String myUrl = "parameters.putString("attachment","{\"name\":\"Facebook application By Dipak Keshariya\",\"href\":\"http://www.arthisoft.com/\",\"caption\":\"By Google Technology \",\"description\":\"Description\",\"media\":[{\"type\":\"image\",\"src\":\" + myPath + \",\"href\":\"http://s.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"for more tips click here\",\"href\":\"http://www.google.com/\"}}}");
";
通过使用连接运算符'+ myPath +'
来查看我如何更改通话中的网址这是非常非常基本的。如果你想成为一名Android开发人员,你应该开始学习java。
另一方面,在你的照片上,左上角,你真的确定你是一个“PROUND”印度人吗? :d