1.WebvView是android内置的一款webkit高性能内部浏览器2. (1)权限: (2)如果Html有JavaScript则需要设置: webView.getSettings().setJavaScriptEnabled(true); (3)如果页面中有连接,点击连接希望在Webview...
分类:
移动开发 时间:
2015-01-07 16:36:34
阅读次数:
205
7月我在研究webview漏洞时专门挑小米手机的MIUI测试了下,发现了非常明显的安全漏洞.通过该漏洞可以远程获取本地APP的权限,突破本地漏洞和远程漏洞的界限,使本地app的漏洞远程也能被利用,达到隔山打牛的效果.在漏洞发现的第一时间,我已经将漏洞细节报告给了小米安全响应中心,目前漏洞已经修复。测...
分类:
移动开发 时间:
2015-01-07 12:21:30
阅读次数:
221
WebView wv = new WebView(content);
WebSettings ws = wv.getSettings();
设置参数明细如下:
setPluginsEnabled(true) ;//支持插件
setUserWideViewPort(false) ;//将图片调整到适合webview的大小
setSupportZoom(true) ;//支持缩放
se...
分类:
移动开发 时间:
2015-01-07 11:03:07
阅读次数:
154
有的时候应用中需要通过点击网页中的文字或者按钮调用一个方法或事件,这时需要我们将网页与应用之间建立联系。
1.和服务器人员约定一个协议例如ios://
2.当点击网页上文字或按钮时,跳转这个约定协议的路径
3.通过webview代理方法监听url,判断是哪个操作决定调用方法。
window.location.href = 'iso://openCamer';
...
分类:
Web程序 时间:
2015-01-06 23:16:44
阅读次数:
445
// An image can be directly compositing if it's the sole content of the layer, and has no box decorations
// that require painting. Direct compositing saves backing store.
bool CompositedLayerMapping:...
分类:
其他好文 时间:
2015-01-06 18:11:08
阅读次数:
176
在一个开源项目看到是用的webview 实现的 1. 这是在asset中的一个模板html News Detail ...
分类:
移动开发 时间:
2015-01-06 17:36:30
阅读次数:
199
@interface IndEditorDetailViewController ()
{
UIWebView *_webView;
UIProgressView *_progressView;
NJKWebViewProgress *_progressProxy;
}
@end
@implementation IndEditorDetailViewController
...
分类:
移动开发 时间:
2015-01-06 15:39:28
阅读次数:
148
优化 图片缓存localstrrage插件https://github.com/paveisistemas/ionic-image-lazy-loadhttps://github.com/sunsus/ngImgCachehttps://github.com/sunsus/ngImgCache/bl...
分类:
移动开发 时间:
2015-01-06 15:28:19
阅读次数:
271
在移动开发中我们会经常需要调用手机的拨打电话功能、发短信功能和发邮件功能,以下是我总结的方法://1.打电话
//方法1 最常用方法
NSURL *telUrl = [NSURL URLWithString:"tel://13161906451"];
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
[webV...
分类:
移动开发 时间:
2015-01-06 10:07:57
阅读次数:
126
android提供了一个WebView控件,借助它我们就可以在自己的应用程序中嵌入一个浏览器,从而轻松的展示各种各样的网页。下面来学习下简单的用法。新建一个WebViewTest项目,然后修改activity_main.xml中的代码,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"...
分类:
移动开发 时间:
2015-01-06 00:53:47
阅读次数:
284