Android - Stetho显示空视图层次结构

时间:2017-03-09 16:50:26

标签: stetho

我用以下代码初始化了stetho

public class MyApplication extends Application {
    public void onCreate() {
        super.onCreate();
        Stetho.initializeWithDefaults(this);
    }
}

现在我去chrome:// inspect它显示空的View Hierarchy

enter image description here

但是,我可以在stetho调试器中检查数据库。 enter image description here

所以,其他一切都运转正常。

我在这里缺少什么?

1 个答案:

答案 0 :(得分:1)

我在应用程序标记内的AndroidManifest.xml中添加了android:name =“。MyApplication”。

现在正在运作。

<application
    ....
    android:name=".MyApplication"
    .....
</application>

enter image description here