标签: stetho
我用以下代码初始化了stetho
public class MyApplication extends Application { public void onCreate() { super.onCreate(); Stetho.initializeWithDefaults(this); } }
现在我去chrome:// inspect它显示空的View Hierarchy
但是,我可以在stetho调试器中检查数据库。
所以,其他一切都运转正常。
我在这里缺少什么?
答案 0 :(得分:1)
我在应用程序标记内的AndroidManifest.xml中添加了android:name =“。MyApplication”。
现在正在运作。
<application .... android:name=".MyApplication" ..... </application>