Android Open Source - cellmatica Cellmatica Live Wallpaper






From Project

Back to project page cellmatica.

License

The source code is released under:

GNU General Public License

If you think the Android project cellmatica listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.ensdac.cellmatica;
/*ww w.  j ava2s . c om*/
import android.content.Context;
import android.opengl.GLSurfaceView;

public class CellmaticaLiveWallpaper extends GLSurfaceView {
    public CellmaticaLiveWallpaper(Context context) {
        super(context);

        // Create an OpenGL ES 2.0 context
        setEGLContextClientVersion(2);

        // Set the Renderer for drawing on the GLSurfaceView
        setRenderer(new CellmaticaRenderer());

        // Render the view only when there is a change in the drawing data
        setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
    }
}




Java Source Code List

com.ensdac.cellmatica.CellmaticaLiveWallpaper.java
com.ensdac.cellmatica.CellmaticaRenderer.java
com.ensdac.cellmatica.MainActivity.java
com.ensdac.cellmatica.SettingsActivity.java
com.ensdac.cellmatica.SettingsFragment.java
com.ensdac.cellmatica.util.SystemUiHiderBase.java
com.ensdac.cellmatica.util.SystemUiHiderHoneycomb.java
com.ensdac.cellmatica.util.SystemUiHider.java