• android 使用 LocalStorage


    PS:本身是.net 出身 因为项目需要 研究了好几天安卓  这个方法网上也有 自己也写出来  有时间自己看看 和 给还没有解决问题的朋友借鉴下,下面有标个重点 是允许使用localstorage 的关键
    这个还只能使用localstorage 目前正在研究 怎么用它来在app 中存储 等研究出来了 再贴
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //实例化WebView对象
        webview = new WebView(this);
    //设置WebView属性,能够执行Javascript脚本
        webview.getSettings().setJavaScriptEnabled(true);
    webview.getSettings().setDomStorageEnabled(true);//重点
    String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
    webview.getSettings().setAppCachePath(appCachePath);
    webview.getSettings().setAllowFileAccess(true);
    webview.getSettings().setAppCacheEnabled(true);
    //js弹出
    webview.setWebChromeClient(new WebChromeClient());
    try {
    //设置打开的页面地址
    webview.loadUrl("http://192.168.16.39:8901/");
    webview.setWebViewClient(new WebViewClient() {
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
    // 重写此方法表明点击网页里面的链接还是在当前的webview里跳转,不跳到浏览器那边
    view.loadUrl(url);
    return true;
    }
    });
    }
    catch(Exception ex)
    {
    ex.printStackTrace();
    }
    setContentView(webview); }
  • 相关阅读:
    北京理工大学复试上机--2014
    北京理工大学复试上机--2013
    北京理工大学复试上机--2012
    北京理工大学复试上机--2011
    北京理工大学复试上机--2010
    Python的逻辑结构和函数
    Python的概述
    BOM
    正则表达式的匹配
    jQuery的插件和跨域、ajax
  • 原文地址:https://www.cnblogs.com/bruceli-net/p/android_localstorage.html
Copyright © 2020-2023  润新知