How can I create a MVP matrix for ES 2.0 in Android?


Use Matrix class
Get a model matrix by using camera settings as in OpenGL 1.1
Get a projection matrix using frustum settings as in opengl 1.1
Multiply these matrices to get the MVP matrix
MVP stands for Model View Projection Matrix
There are APIs on Matrix and GLES20 classes in the android sdk
 to provision these.

I will post some sample code soon.