android xml中来自json的href

发布于 2024-12-06 19:08:55 字数 424 浏览 2 评论 0原文

我有一个应用程序,在我的主菜单页面上我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘虞初梦 2024-12-13 19:08:55

使用 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);

别在捏我脸啦 2024-12-13 19:08:55

嗯,这对于第一次运行非常有用,当我重新运行应用程序时,网络视图没有显示。唯一改变的是每次加载时传入的图像都不同。

webView2.loadDataWithBaseURL(null, valArray.getString(1), "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.

webView2.loadDataWithBaseURL(null, valArray.getString(1), "text/html", "utf-8", null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文