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


原文地址:https://www.cnblogs.com/zquan/p/9508617.html