Cocos2d-x开发移植到安卓平台横竖屏设置及相关

一、横屏、竖屏设置

        eclipse打开安卓项目,找到AndroidManifest.xml文件。

        

 

 android:screenOrientation="landscape" 为横屏;   android:screenOrientation="portrait"为竖屏。  

二、读写sd卡
        AndroidManifest.xml文件中,先增加权限:
       
       

        FILE *fp = fopen("/mnt/sdcard/xxx.xxx", "rb+");
       

转载于:https://www.cnblogs.com/zhong-dev/p/4044614.html

你可能感兴趣的:(Cocos2d-x开发移植到安卓平台横竖屏设置及相关)