android 中 webview 怎么用 localStorage

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 中 webview 怎么用 localStorage相关的知识,希望对你有一定的参考价值。

localStorage sessionStorage 都是html5的东西
这些东西和webView没有什么关系
webView相当一于一个浏览器而已
而localStorage sessionStorage是用js脚本去写的,只要你设置webView允许执行javascript脚本即可
设置方式:
WebSettings setting = webView.getSettings();
setting.setJavaScriptEnabled(true);//支持js

localStorage sessionStorage用法:
在客户端存储数据
HTML5 提供了两种在客户端存储数据的新方法:
localStorage - 没有时间限制的数据存储
sessionStorage - 针对一个 session 的数据存储
之前,这些都是由 cookie 完成的。但是 cookie 不适合大量数据的存储,因为它们由每个对服务器的请求来传递,这使得 cookie 速度很慢而且效率也不高。
在 HTML5 中,数据不是由每个服务器请求传递的,而是只有在请求时使用数据。它使在不影响网站性能的情况下存储大量数据成为可能。
对于不同的网站,数据存储于不同的区域,并且一个网站只能访问其自身的数据。
HTML5 使用 JavaScript 来存储和访问数据。
localStorage 方法
localStorage 方法存储的数据没有时间限制。第二天、第二周或下一年之后,数据依然可用。
如何创建和访问 localStorage:
实例
<script type="text/javascript">
localStorage.lastname="Smith";
document.write(localStorage.lastname);
</script>

下面的例子对用户访问页面的次数进行计数:
实例
<script type="text/javascript">
if (localStorage.pagecount)

localStorage.pagecount=Number(localStorage.pagecount) +1;

else

localStorage.pagecount=1;

document.write("Visits "+ localStorage.pagecount + " time(s).");
</script>

sessionStorage 方法
sessionStorage 方法针对一个 session 进行数据存储。当用户关闭浏览器窗口后,数据会被删除。
如何创建并访问一个 sessionStorage:
实例
<script type="text/javascript">
sessionStorage.lastname="Smith";
document.write(sessionStorage.lastname);
</script>

下面的例子对用户在当前 session 中访问页面的次数进行计数:
实例
<script type="text/javascript">
if (sessionStorage.pagecount)

sessionStorage.pagecount=Number(sessionStorage.pagecount) +1;

else

sessionStorage.pagecount=1;

document.write("Visits "+sessionStorage.pagecount+" time(s) this session.");
</script>
参考技术A 默认WebView没有开启LocalStorage存储。
代码如下:
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.getSettings().setAppCacheMaxSize(1024*1024*8);
String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
mWebView.getSettings().setAppCachePath(appCachePath);
mWebView.getSettings().setAllowFileAccess(true);
mWebView.getSettings().setAppCacheEnabled(true);
或者是:
wvBrowser.getSettings().setJavaScriptEnabled(true);
// 开启DOM缓存。
wvBrowser.getSettings().setDomStorageEnabled(true);
wvBrowser.getSettings().setDatabaseEnabled(true);
wvBrowser.getSettings().setDatabasePath(context.getApplicationContext().getCacheDir().getAbsolutePath());
setDatabasePath在API19时已经废弃,原因是因为在4.4WebView的内核已经换为了Chrome的内核,存储路径有WebView控制。本回答被提问者采纳

怎么设置webview内容大小

参考技术A android 如程序设置webview大小的方法为:
1、android自带的五种字体大小:
SMALLEST(50%),
SMALLER(75%),
NORMAL(100%),
LARGER(150%),
LARGEST(200%);

代码:webSettings.setTextSize(TextSize.LARGER);
2、android3。0以下的系统可以用下面的代码 :
public static void setScaleVsalue(View view, double size)
Class classType;
Method method = null;
try
classType = WebView.class;
for (Method item : classType.getDeclaredMethods())
if (item.getName().equals("setNewZoomScale"))
method = item;


if (method != null)
method.setAccessible(true);
method.invoke(view, new Object[] (float) (size / 100.0),
true, true );

catch (SecurityException e)
e.printStackTrace();
catch (IllegalAccessException e)
e.printStackTrace();
catch (IllegalArgumentException e)
e.printStackTrace();
catch (InvocationTargetException e)
e.printStackTrace();


MyWebView.setScaleValue(mMyWebView,textSize);

以上是关于android 中 webview 怎么用 localStorage的主要内容,如果未能解决你的问题,请参考以下文章

android 中 webview 怎么用 localStorage

在Android系统中怎样用WebView打开一些非HTTP开头的网址

Webview行为唤醒锁android

android开发,用webview打开本地html网页时,怎么清除缓存

用hbuilder开发app怎么从webview中跳出新页面

怎么设置webview内容大小