Android开发调试神器Stetho使用
程序员文章站
2022-05-30 14:13:56
...
一. 项目添加依赖。
compile ‘com.facebook.stetho:stetho:1.3.1‘
二. 初始化 Stetho
public class MyApplication extends Application {
public void onCreate() {
super.onCreate();
Stetho.initializeWithDefaults(this);
}
}
三. 修改网络请求(可选)
new OkHttpClient.Builder() .
addNetworkInterceptor(new StethoInterceptor()) .build()
四. 运行你的项目
在chrome中访问 chrome://inspect
找到你的项目 点击 inspect
推荐阅读
-
android开发中ListView与Adapter使用要点介绍
-
Android开发中使用外部应用获取SD卡状态的方法
-
Android调试神器stetho使用详解和改造
-
Android开发之TextView使用intent传递信息,实现注册界面功能示例
-
Android开发中TextView各种常见使用方法小结
-
android开发教程之使用线程实现视图平滑滚动示例
-
android开发教程之startActivityForResult使用方法
-
android使用webwiew载入页面使用示例(Hybrid App开发)
-
Android之使用Android-query框架开发实战(二)
-
【Android 开发】使用不同的 interpolator、色彩渐变