Android 问题记录

Android M developer preview(API 23) Exception :Activity {xxx.xxx/xxx.xxx.XXX} did not call finish() prior to onResume() completing

原因:
Activity 使用android:theme="@android:style/Theme.NoDisplay"样式,代码中显示了Dialog,则可能出现该异常

解决:
Activity 使用@android:style/Theme.Translucent.NoTitleBar样式代替

更多详情

你可能感兴趣的:(Android 问题记录)