在Android Studio中檢視Sqlite的方法

請叫我碼農怪蜀黍發表於2017-04-24

只說最好的方法,使用工具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程式碼進行操作。

 
 

相關文章