How to avoid restarting activity when orientation changes on Android(如何在 Android 上的方向更改时避免重新启动活动)
问题描述
我正在创建一个在画布上绘制视图的 Android 应用.当设备的方向改变时,活动重新启动.我不想这样.
I am creating an Android app in which I'm drawing a view on a canvas. When the device's orientation changes, the activity restarts. I don't want it to.
如何避免在方向改变时重新启动活动?
How can I avoid restarting the activity when the orientation changes?
推荐答案
有多种方法可以做到,但是给定 这里,使用
There are various ways to do it, but as given here, using
android:configChanges="keyboardHidden|orientation|screenSize"
允许您监听配置更改.然后,您通过覆盖 onConfigurationChanged
并调用 setContentView
来响应这些更改.
allows you to listen for the config changes. You then respond to these changes by overriding onConfigurationChanged
and calling setContentView
.
这就是我一直这样做的方式,但我很想知道其他人的想法.
This is the way I've been doing it, but I'd be interested to know other people's thoughts.
这篇关于如何在 Android 上的方向更改时避免重新启动活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Android 上的方向更改时避免重新启动活动
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01