摘要:
阅读:https://developer.android.com/training/graphics/opengl/environment.html接下来学学怎么使用OpenGL。首先,在manifest里声明:还要声明支持,不支持的手机不会运行你的程序:代码:public class OpenGLES20 extends Activity { private GLSurfaceView mGLView; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(save... 阅读全文
摘要:
阅读:https://developer.android.com/training/displaying-bitmaps/index.htmlBitmap非常消耗内存,因此学会怎么处理它非常重要。有几点需要注意:1、安卓为每个系统分配16MB的内存使用,但这并不是一定的,有些限制会高点。2、Bitm... 阅读全文