首页 > 代码库 > 在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‘
}
- 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的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。