本文介绍了把iframe放在Android应用程序上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试着把我的iframe图表从我的thingpeak帐户中删除。

I'm try to put my iframe chart that i took from my thingspeak account.

这是我需要放的字符串(我从thingspeak获取) :

This is the string i need to put(has i took from thingspeak):

<iframe width="450" height="260" style="border: 1px solid #cccccc;" src="http://api.thingspeak.com/channels/31592/charts/1?width=450&height=260&results=60&dynamic=true" ></iframe>

这是我在我的活动中使用的:

this what i use on my activity:

 WebView webview;
    webview = (WebView) findViewById(R.id.webview);
    webview.getSettings().setJavaScriptEnabled(true);
    webview.loadData();

我尝试将iframe字符串放在loadData函数中,但没有成功。

I try without success to put my iframe string in "loadData" function.

感谢帮助者;)

推荐答案

你可以创建一个字符串使用html:

You can create a String with the html :

String html = "<iframe width=\"450\" height=\"260\" style=\"border: 1px solid #cccccc;\" src=\"http://api.thingspeak.com/channels/31592/charts/1?width=450&height=260&results=60&dynamic=true\" ></iframe>";

然后调用方法loadData():

and then call the method loadData():

webview.loadData(html, "text/html", null);

这篇关于把iframe放在Android应用程序上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 16:08