在Android Studio中查看Sqlite数据内容的方法

在Android Studio中查看Sqlite的方法

只说最好的方法,使用工具stetho:http://facebook.github.io/stetho/
1.在Gragle中加上如下语句:

dependencies {
    // Stetho core
    compile 'com.facebook.stetho:stetho:1.3.1'
    //If you want to add a network helper
    compile 'com.facebook.stetho:stetho-okhttp3:1.3.1'
}

2.在自己android源代码的Application类中(如果没有就创建一个,继承自android.app.Application)的加入代码:

    @Override
    public void onCreate() {
        super.onCreate();
        Stetho.initializeWithDefaults(this);
        new OkHttpClient.Builder()
                .addNetworkInterceptor(new StethoInterceptor())
                .build();
    }

3.编译app,安装至手机并运行该app。
4.打开Chrome浏览器,输入网址
chrome://inspect
5.检测到手机上运行的app,点击inspect链接,进入手机信息管理页面:
在Android Studio中查看Sqlite数据内容的方法_第1张图片
6.在Web SQL中可以轻松查看自己的Sqlite表格,并可以输入sqlite代码进行操作。

你可能感兴趣的:(Android技术)