webdeviceagent无法获得webview内容ios

webdeviceagent无法获得webview内容ios,第1张

1 webView加载H5链接,设置它为tableView的 headerView,下方评论信息用Cell加载展示。

2 在webView的回调方法webViewDidFinishLoad中获取网页内容高度,设置为webView的高度,重新将webView赋给tableView的headerView。

Tip: 将一个View赋值给UITableView的tableHeaderView时,不需要手动设置高度,HeaderView会自动使用View的高度。

像上面这样,类似的方法很多,无论是JS获取,还是contentSize获取,最后结果都难以获取到准确高度,并非方法不行,而是:

The extensive Android SDK allows you to do many great things with particular views like the WebView for displaying webpages on Android powered devices

Android SDK 的扩展,通过使用特定的view,允许你做许多事情。比如,WebView,用来在Android手机上展示网页。

As of lately while I was experimenting with the Android SDK I was using a WebView in one of my activities

最近,我在体验Android SDK的时候,在一个Activity中用到了WebView。

From that particular WebView I needed to know the ContentHeight but also the ContentWidth

从WebView,我不但想要知道ContentHeight,还想知道ContentWidth。

Now getting the contentHeight is easy like so:

现在的情况是:获取contentHeight很easy,如下:

webviewgetContentHeight();

Unfortunately getting the contentWidth from a WebView is rather more difficult, since there is not a simple method like:

不幸的是,从一个WebView获取contentWidth是相当困难,因为SDK中没有一个像这样的方法:

// THIS METHOD DOES NOT EXIST!

webviewgetContentWidth();

There are ways to get the contentWidth of the rendered HTML page and that is through Javascript If Javascript can get it for you, then you can also have them in your Java code within your Android App

当然是有方法获取contentWidth的,就是通过Javascript来获取。如果你能够支持Javascript,那么你就可以在你的Android 程序中,使用java代码来获取宽度

By using a JavascriptInterface with your WebView you can let Javascript communicate with your Android App Java code by invoking methods on a registered object that you can embed using the JavascriptInterface

通过在你的WebView中使用JavascriptInterface,通过调用你注册的JavascriptInterface方法,可以让Javascript和你的Android程序的java代码相互连通。

So how does this work

怎么做呢?

For a quick example I created a simple Activity displaying a webview that loads a webpage wich displays a log message and a Toast message with the contentWidth wich was determined using Javascript Note that this happens AFTER the page was finished loading, because before the page is finished loading the width might not be fully rendered Also keep in mind that if there is content loaded asynchronously that it doesn’t affect widths (most likely only heights will be affected as the width is almost always fully declared in CSS files unless you have a 100% width webpage)

搭建一个快速的例子:创建一个简单的展示webView的Activity,一个LogCat消息,一个Toast消息,用来显示我们通过Javascript获取的宽度。注意:这些会在网页完全加载之后显示,因为在网页加载完成之前,宽度可能不能够正确的获取到。同时也要注意到,如果是异步加载,这并不影响宽度(最多高度会受影响,因为宽度总是在CSS文件中做了完全的定义,除非在网页中你用了100%宽度。)。

Below is the code of the Activity Mainjava:

下面的代码是Activity的代码:

Mainjava

01 package compimmosandroidsampleswebviewcontentwidth;

02 import androidappActivity;

03 import androidosBundle;

04 import androidutilLog;

05 import androidwebkitWebView;

06 import androidwebkitWebViewClient;

07 import androidwidgetToast;

08 public class Main extends Activity {

09 private final static String LOG_TAG = "WebViewContentWidth";

10 private final Activity activity = this;

11 private static int webviewContentWidth = 0;

12 private static WebView webview;

13

14 / Called when the activity is first created /

15 @Override

16 public void onCreate(Bundle savedInstanceState) {

17 superonCreate(savedInstanceState);

18 setContentView(Rlayoutmain);

19 webview = (WebView) findViewById(Ridwebview);

20 webviewgetSettings()setJavaScriptEnabled(true);

21 webviewsetSaveEnabled(true);

22 webviewaddJavascriptInterface(new JavaScriptInterface(), "HTMLOUT");

23 webviewsetWebViewClient(new WebViewClient() {

24 @Override

25 public void onPageFinished(WebView view, String url) {

26 webviewloadUrl("javascript:windowHTMLOUTgetContentWidth(documentgetElementsByTagName(’html’)[0]scrollWidth);");

27 }//(">

我发现没有办法从webView控件中直接提取内容,因此我写了一个>

用wkwebview加载一个网页电子书 怎么样可以获取已看部分的进度 例如: int a[3][3]={1,2,3,4,5,6,7,8,9}; 可以写为: int a[][3]={1,2,3,4,5,6,7,8,9}; 3) 数组是一种构造类型的数据。二维数组可以看作是由一维数组的嵌套而构成的。设一维数组的wkwebview回调里面怎么获取网页内容

非常感谢大家对我的关注!!!!

打开文件的方法:

1获取文件的沙盒路径path

2将path路径转化URL

3用webView显示出来

以上就是关于webdeviceagent无法获得webview内容ios全部的内容,包括:webdeviceagent无法获得webview内容ios、如何获取WebView的内容宽度、如何获取WebView中页面的Title信息等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/9463530.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存