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 应用程序的开发并处于测试阶段。我已经用模拟器对其进行了测试,一切正常,但是当我将它部署在设备上时,其中一些当您更改屏幕方向时,应用程序屏幕开始闪烁。
任何线索从哪里开始问题调查?
当方向从纵向变为横向或反之时,再次调用 onCreate,使应用程序从头开始。android:configChanges="keyboardHidden|orientation"通过在类名或覆盖onConfigChanged()函数前面声明,确保在清单中处理它。
android:configChanges="keyboardHidden|orientation"
onConfigChanged()
请检查设备版本和开发应用程序版本是否相同,并在安装到设备后清除应用程序然后运行。