android xml中来自json的href
我有一个应用程序,在我的主菜单页面上我想从 json 加载一个可点击的广告(href)。
示例:
'nationalad':
"<"img src=\"http:\/\/www.mywebsite.com\/images\/national\/fullrz_2_4e657ae4df4ee_mywebsite.JPG\">"
这是我从 json 返回的值:
"<"img src="http://www.mywebsite.com/images/national/fullrz_2_4e657ae4df4ee_kickintheapp.JPG">
如何在我的 xml 页面中设置它?我是否使用视图或网络视图或图像/图像按钮?
彻底迷失了。
I have and app and on my main menu page I want to load a clickable ad (href) from json.
example :
'nationalad':
"<"img src=\"http:\/\/www.mywebsite.com\/images\/national\/fullrz_2_4e657ae4df4ee_mywebsite.JPG\">"
This is the value I am getting back from json :
"<"img src="http://www.mywebsite.com/images/national/fullrz_2_4e657ae4df4ee_kickintheapp.JPG">
How do I set this in my xml page? Do I use a view or webview or an image /image button?
Completely lost.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 WebView,并使用 loadDataWithBaseURL
(null, yourData, "text/html", "utf-8", null);
Use a WebView, and show the data by using loadDataWithBaseURL
(null, yourData, "text/html", "utf-8", null);
嗯,这对于第一次运行非常有用,当我重新运行应用程序时,网络视图没有显示。唯一改变的是每次加载时传入的图像都不同。
Hmm this works great for the first run what when I re-run the app the webview is not showing. The only thing that changes is that the image coming in is different on each load.