android 使用web查看SQLite数据

添加依赖:

compile 'com.facebook.stetho:stetho:1.4.2'
compile 'com.facebook.stetho:stetho-okhttp3:1.4.2'

初始化:
public void initStetho(){
        Stetho.initialize(
                Stetho.newInitializerBuilder(this)
                .enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
        .enableWebKitInspector(Stetho.defaultInspectorModulesProvider(this))
        .build());
    }

 



在浏览器上输入:

 

点击inspect

 

 

 


posted @ 2018-08-20 22:40  chenzquan  阅读(198)  评论(0编辑  收藏  举报