在Android Studio中查看Sqlite的方法

Posted 请叫我码农怪蜀黍

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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‘
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

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

    @Override
    public void onCreate() {
        super.onCreate();
        Stetho.initializeWithDefaults(this);
        new OkHttpClient.Builder()
                .addNetworkInterceptor(new StethoInterceptor())
                .build();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3.编译app,安装至手机并运行该app。 
4.打开Chrome浏览器,输入网址 
chrome://inspect 
5.检测到手机上运行的app,点击inspect链接,进入手机信息管理页面: 
技术分享 
6.在Web SQL中可以轻松查看自己的Sqlite表格,并可以输入sqlite代码进行操作。

 
 






以上是关于在Android Studio中查看Sqlite的方法的主要内容,如果未能解决你的问题,请参考以下文章

如何从列表视图中从 sqlite 检索数据单击并查看不同的活动 android studio

如何在 Android Studio 上获取 Sqlite 数据库中插入数据的实时视图

使用adb调试工具对android studio模拟器里SQLite进行查看操作

使用adb调试工具对android studio模拟器里SQLite进行查看操作

使用adb调试工具对android studio模拟器里SQLite进行查看操作

关于Android Studio查看SQLite数据库