博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cocos2dx: 360平台接入记录(1) - 从游戏界面转到福利界面,在转会到游戏界面黑屏
阅读量:4215 次
发布时间:2019-05-26

本文共 1043 字,大约阅读时间需要 3 分钟。

问题:

cocos2dx游戏接入360平台,出现一个问题从游戏界面转到福利界面,在转会到游戏界面黑屏,通过log日志,也发现游戏的activity中的onDestroy函数执行了。

protected void onDestroy() {

// 游戏退出前,不再调用SDK其他接口时,需要调用Matrix.destroy接口
        Log.d("", "onDestroy++++++++++++++++");
Matrix.destroy(this);
super.onDestroy();    
}

解决:

1、

在网上搜索的一番,找到一个解决方案:

<activity

            android:name="xxxxxxxxx"
            android:configChanges="orientation" -- 修改以前
            android:label="@string/app_name"
            android:screenOrientation="landscape"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

            2、

<activity

            android:name="xxxxxxxx"
            android:configChanges="orientation|screenSize|smallestScreenSize"   -- 修改之后
            android:label="@string/app_name"
            android:screenOrientation="landscape"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

转载地址:http://rssmi.baihongyu.com/

你可能感兴趣的文章
男人的品位--我们自己的最求
查看>>
Android (Linux) Suspend流程
查看>>
LINUX时间管理
查看>>
定时器的使用
查看>>
为Android加入busybox工具
查看>>
使用技巧busybox
查看>>
如何查看与/dev/input目录下的event对应的设备
查看>>
bootloader-bootable解析
查看>>
bootloader (LK)&&android lk bootloader中相关修改指南
查看>>
SD卡驱动分析--基于高通平台
查看>>
SD Card 驱动流程分析
查看>>
Linux之debugfs介绍
查看>>
关于sd卡中一些概念的理解
查看>>
sd卡驱动分析之相关硬件操作和总结
查看>>
好的播文
查看>>
linux dd命令解析
查看>>
linux find命令详解
查看>>
S3C2440上touchscreen触摸屏驱动
查看>>
USB History Viewing
查看>>
怎样做可靠的分布式锁,Redlock 真的可行么?
查看>>