解析sdk android app没有在5.0中加载内容

时间:2015-01-30 08:02:14

标签: android parse-platform android-5.0-lollipop

我已经在我的Android应用程序中集成了解析sdk,并在真实设备上的android 5.0上进行了测试。问题是,最初应用程序不会显示任何完全空白的内容,但几小时后应用程序就会通过推送通知开始正常运行。有没有人在此之前遇到过这个问题,或者任何人都可以告诉我为什么会这样?

1 个答案:

答案 0 :(得分:1)

所以我终于得到了解决这个问题的方法。如果您一直在使用来自githhub的foamyguy的解析示例,那么当您第一次运行它时,Android 5.0中会有一个空白活动。解决方案只是转到 ParseApplication.java 并注释说明

的行
ParseInstallation.getCurrentInstallation().saveInBackground();

运行它,它会起作用,如果你的应用程序崩溃,那么使用这一行

ParseInstallation.getCurrentInstallation().saveEventually();

这将完全修复您的应用程序。