Android - 活动状态新手问题
我正在尝试制作一个测验应用程序,其中的问题都显示在同一个活动中。每次旋转屏幕时,都会调用创建方法,并且测验返回到第一个问题,丢失有关其他问题的所有数据。
我怎样才能防止这种情况发生?
谢谢。
*ps:我不希望我的应用程序仅在纵向或横向模式下工作,而是在两种模式下工作。
I am trying to make a quiz app in which the questions are all displayed on the same activity. Everytime the screen is rotated, on create method is recalled and the quiz returns back to its first question, losing all the data regarding the other questions.
How can I prevent this ?
Thanks.
*ps: I don't want my application to work only at portrait or landscape mode but at both.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 AndroidManifest 中,在您的活动中添加:
所以类似:
这将告诉应用程序您想要自己按方向处理更改。您可以对其执行任何操作,或者在您的应用程序中捕获相应的方法。
In your AndroidManifest, within your activity add:
So something like:
This will tell the app that you want to handle changes by orientation yourself. You can do nothing with it, or catch the corresponding method in your app.
您可以将其添加到您的活动条目中:
You can add this to your activities entry: