我有一个简单的应用程序,当以纵向模式打开时,它可以正常工作,但是,当它以编程方式将布局方向切换为横向时,会引发很多logcat错误,并且屏幕开始闪烁。.我不知道怎么回事上吗?
我的LogCat
08-29 18:35:05.596 17840-17840 / com.mediamaster.kidstube I / HwPointEventFilter:由于没有配置,因此不支持AFT 08-29 18:35:05.694 17840-17840 / com.mediamaster.kidstube W / WindowDecorActionBar:不应执行过渡,或者过渡动画为null或正在运行,或者mContainer视图为null或尚未绘制mContainer视图向屏幕 08-29 18:35:05.695 17840-17840 / com.mediamaster.kidstube W / CfgFilePolicy:找不到以下配置文件:/ themes / diff / icons CFG_DIRS长度:11 08-29 18:35:05.704 17840-17840 / com.mediamaster.kidstube I / HwPointEventFilter:不支持AFT因为没有配置 08-29 18:35:05.817 17840-17840 / com.mediamaster.kidstube W / WindowDecorActionBar:不应执行过渡或过渡动画为null或正在运行,或者mContainer视图为null或尚未绘制mContainer视图向屏幕 08-29 18:35:05.818 17840-17840 / com.mediamaster.kidstube W / CfgFilePolicy:找不到以下配置文件:/ themes / diff / icons CFG_DIRS长度:11 08-29 18:35:05.828 17840-17840 / com.mediamaster.kidstube I / HwPointEventFilter:由于没有配置,不支持AFT 08-29 18:35:05.930 17840-17840 / com.mediamaster.kidstube W / WindowDecorActionBar:不应执行过渡,或者过渡动画为null或正在运行,或者mContainer视图为null或尚未绘制mContainer视图向屏幕 08-29 18:35:05.931 17840-17840 / com.mediamaster.kidstube W / CfgFilePolicy:找不到以下配置文件:/ themes / diff / icons CFG_DIRS长度:11 08-29 18:35:05.939 17840-17840 / com.mediamaster.kidstube I / HwPointEventFilter:由于没有配置,不支持AFT 08-29 18:35:06.053 17840-17840 / com.mediamaster.kidstube W / WindowDecorActionBar:不应执行过渡,或者过渡动画为null或正在运行,或者mContainer视图为null或尚未绘制mContainer视图向屏幕 08-29 18:35:06.053 17840-17840 / com.mediamaster.kidstube W / CfgFilePolicy:找不到以下配置文件:/ themes / diff / icons CFG_DIRS长度:11 08-29 18:35:06.062 17840-17840 / com.mediamaster.kidstube I / HwPointEventFilter:由于没有配置,因此不支持AFT
答案 0 :(得分:0)
解决方案是将以下内容添加到manifest.xml中的活动
android:configChanges =“ orientation | screenSize | keyboardHidden”
感谢您的帮助!
编辑:在清单中将活动方向设置为“横向”时,我仍然遇到问题,请帮帮我!