android设置横屏
要在android内设置横屏,只需要 在manifest.xml配置的activity写一句 android:screenOrientation="landscape"
但是一定要注意,此时oncreate会被调用两次,第二次是因为要转方向,要避免,可以加上一句
android:configChanges="orientation"
补充:移动开发 , Android ,
要在android内设置横屏,只需要 在manifest.xml配置的activity写一句 android:screenOrientation="landscape"
但是一定要注意,此时oncreate会被调用两次,第二次是因为要转方向,要避免,可以加上一句
android:configChanges="orientation"
补充:移动开发 , Android ,