推荐使用 读书导航极客导航 :125啦极客导航(http://www.biumall.com/jike.html)
最近在Android 6.0时出现logo过度到Android动画时出现闪一下和黑屏问题。
查询资料后,在《kernel logo到开机动画之间闪现黑屏(android 5.X)》找到了解决方法,因此摘抄于此作为笔记。
/frameworks/base/cmds/bootanimation/BootAnimation.cpp
删除部分我做了记录,如下
//开机动画走Android()的,注释如下
bool BootAnimation::android()
{
initTexture(&mAndroid[0], mAssets, "images/android-logo-mask.png");
initTexture(&mAndroid[1], mAssets, "images/android-logo-shine.png");
//--------------------delete start------------------------
// clear screen
//glShadeModel(GL_FLAT);
//glDisable(GL_DITHER);
//glDisable(GL_SCISSOR_TEST);
//glClearColor(0,0,0,1);
//glClear(GL_COLOR_BUFFER_BIT);
//eglSwapBuffers(mDisplay, mSurface);
//--------------------delete end------------------------
glEnable(GL_TEXTURE_2D);
glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
.....
return false;
}
//开机动画走自定义动画Move()
bool BootAnimation::movie()
{
String8 desString;
......
mZip->endIteration(cookie);
//--------------------delete start------------------------
// clear screen
//glShadeModel(GL_FLAT);
//glDisable(GL_DITHER);
//glDisable(GL_SCISSOR_TEST);
//glDisable(GL_BLEND);
//glClearColor(0,0,0,1);
//glClear(GL_COLOR_BUFFER_BIT);
//eglSwapBuffers(mDisplay, mSurface);
//--------------------delete end ------------------------
glBindTexture(GL_TEXTURE_2D, 0);
glEnable(GL_TEXTURE_2D);
glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
const int xc = (mWidth - animation.width) / 2;
const int yc = ((mHeight - animation.height) / 2);
nsecs_t frameDuration = s2ns(1) / animation.fps;
Region clearReg(Rect(mWidth, mHeight));
clearReg.subtractSelf(Rect(xc, yc, xc+animation.width, yc+animation.height));
......
return false;
}
如果是原生系统的,那就是改上面两个就可以的,但是由于我们使用的是被芯片公司修改过得源码。
比如Rockchip(瑞芯微),autochips(杰发)等,他们会对代码进行优化有修改。
如果你的代码不是Android源码,可以再查找一下是否有ETC1movie(),MTKmovie()等,如果有,请把下面代码也注释掉。
当然,虽有这个代码,但不一定走了,为了确保万一,还是注释掉为好。
//芯片公司自定义一套动画Move()
bool BootAnimation::ETC1movie()
{
......
mZip->endIteration(cookie);
initShader();
glViewport((mWidth - animation.width) >> 1, (mHeight - animation.height) >> 1,
animation.width, animation.height);
//--------------------delete start------------------------
// clear screen
//glDisable(GL_DITHER);
//glDisable(GL_SCISSOR_TEST);
//glDisable(GL_BLEND);
//glClear(GL_COLOR_BUFFER_BIT);
//eglSwapBuffers(mDisplay, mSurface);
//--------------------delete end------------------------
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, 0);
glUniform1i(mUniformTexture, 0);
......
return false;
}
© 版权声明