gpt4 book ai didi

android - Orientation 改变时调用 onstop 方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:00:49 25 4
gpt4 key购买 nike

当我更改 Android 应用程序的方向时,它会调用 onStop 方法,然后调用 onCreate。如何避免在方向改变时调用 onStop 和 onCreate?

最佳答案

这个问题已经很久没有被激活了,但我仍然需要回答这个问题。我遇到了同样的问题并找到了答案。

在 list 中,您应该在您的 Activity 中添加 android:configChanges=orientation|screenLayout|layoutDirection|screenSize,这不应该在方向更改时调用默认操作。

...
<activity android:name=".Activity"
android:screenOrientation="portrait"
android:configChanges="orientation|screenLayout|layoutDirection|screenSize"
...


在你的 Activity 中:

@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// This overrides default action
}



原始示例:
http://android-er.blogspot.fi/2011/05/prevent-activity-restart-when-screen.html

关于android - Orientation 改变时调用 onstop 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5961054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com