Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了自己的 Android 应用程序。我的问题是,每次我将它从扩展坞中取出时它都会重新启动。我能做些什么?
最好的问候马库斯
我的问题是,每次我将它从扩展坞中取出时它都会重新启动
将设备放入或取出支持的汽车和桌面基座会导致配置更改,就像用户旋转屏幕、更改区域设置、连接键盘等一样。
因此,默认情况下,您的应用程序不会重新启动,但您的 Activity 会被销毁并重新创建。
我能做些什么?
支持配置更改、via onSaveInstanceState()、保留片段等。
onSaveInstanceState()