Android - 活动状态新手问题

发布于 2024-12-02 10:31:37 字数 166 浏览 1 评论 0原文

我正在尝试制作一个测验应用程序,其中的问题都显示在同一个活动中。每次旋转屏幕时,都会调用创建方法,并且测验返回到第一个问题,丢失有关其他问题的所有数据。

我怎样才能防止这种情况发生?

谢谢。

*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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遇见了你 2024-12-09 10:31:37

在您的 AndroidManifest 中,在您的活动中添加:

android:configChanges="orientation"

所以类似:

<activity android:name="MyActivity"
          android:configChanges="orientation" />

这将告诉应用程序您想要自己按方向处理更改。您可以对其执行任何操作,或者在您的应用程序中捕获相应的方法。

In your AndroidManifest, within your activity add:

android:configChanges="orientation"

So something like:

<activity android:name="MyActivity"
          android:configChanges="orientation" />

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.

池木 2024-12-09 10:31:37

您可以将其添加到您的活动条目中:

android:configChanges="keyboardHidden|orientation"

You can add this to your activities entry:

android:configChanges="keyboardHidden|orientation"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文