Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我ACRA在我的 Android 应用程序中使用。在onCreate()我的Application班级中初始化应用程序时,在应用程序启动之前存在明显的延迟。这在应用程序的第一个布局显示之前显示为白屏。
ACRA
onCreate()
Application
有没有办法解决这个问题??也许在类中加载内容视图或稍后在应用程序中Application初始化。ACRA
我还将 Acra 集成到我的应用程序中,但我从未遇到过您在此处提到的问题。以下是我如何初始化 Acra:
@Override public void onCreate() { // The following line triggers the initialization of ACRA ACRA.init(this); super.onCreate(); }