如果方向改变,Android 应用程序会崩溃
我创建了一个游戏应用程序,通过一个名为“分享”的按钮向 Facebook 分享一些详细信息。当我完成游戏时,它会在对话框中询问名称,在相同方向(横向/纵向)上工作时,它显示没有问题。如果我在横向玩游戏,完成游戏,将手机翻转到纵向以输入我的名字,然后单击“共享”,它会崩溃。如何克服这个问题呢?
I have created a game app where I share some details to Facebook through a button called Share. When I finish the game it asks for the name in a dialog box, it shows no problem when working on the same orientation (landscape/portrait). If I'm playing in landscape, finish the game, flip the phone to portrait to type my name in, then click "Share" it will crash. How to overcome this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当方向改变时,活动将重新启动。我猜您的代码在重新启动之前没有保存所需的信息。您可以通过自己处理特定的配置更改(即:方向更改)来停止此默认行为。关于执行此操作的一个很好的教程位于此处:处理运行时更改
An activity is restarted when the orientation changes. I'm guessing your code isn't saving needed information before this restart occurs. You can stop this default behavior by handling specific configuration changes yourself (ie: orientation change). A good tutorial on doing this is located here: Handling Runtime Changes