Back to project page android_wallpaper_hellokitty.
The source code is released under:
Apache License
If you think the Android project android_wallpaper_hellokitty listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2012 Harri Smatt/*w w w. j a va 2s . c o m*/ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package fi.harism.wallpaper.hellokitty; import android.opengl.GLSurfaceView; import android.service.wallpaper.WallpaperService; import android.view.SurfaceHolder; public final class KittyService extends WallpaperService { @Override public Engine onCreateEngine() { return new WallpaperEngine(); } /** * Private wallpaper engine implementation. */ private final class WallpaperEngine extends Engine { private KittyRenderer mRenderer; private WallpaperSurfaceView mWallpaperSurfaceView; @Override public void onCreate(SurfaceHolder surfaceHolder) { // Uncomment for debugging. // android.os.Debug.waitForDebugger(); super.onCreate(surfaceHolder); mWallpaperSurfaceView = new WallpaperSurfaceView(); mRenderer = new KittyRenderer(mWallpaperSurfaceView); mWallpaperSurfaceView.setEGLContextClientVersion(2); mWallpaperSurfaceView.setRenderer(mRenderer); mWallpaperSurfaceView .setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY); } @Override public final void onDestroy() { super.onDestroy(); mRenderer.stopHandler(); mWallpaperSurfaceView.onDestroy(); mWallpaperSurfaceView = null; } @Override public final void onVisibilityChanged(boolean visible) { super.onVisibilityChanged(visible); if (visible) { mWallpaperSurfaceView.onResume(); mWallpaperSurfaceView.requestRender(); } else { mWallpaperSurfaceView.onPause(); mRenderer.stopHandler(); } } /** * Lazy as I am, I din't bother using GLWallpaperService (found on * GitHub) project for wrapping OpenGL functionality into my wallpaper * service. Instead am using GLSurfaceView and trick it into hooking * into Engine provided SurfaceHolder instead of SurfaceView provided * one GLSurfaceView extends. For saving some bytes Renderer is * implemented here too. */ private final class WallpaperSurfaceView extends GLSurfaceView { public WallpaperSurfaceView() { super(KittyService.this); } @Override public final SurfaceHolder getHolder() { return WallpaperEngine.this.getSurfaceHolder(); } /** * Should be called once underlying Engine is destroyed. Calling * onDetachedFromWindow() will stop rendering thread which is lost * otherwise. */ public final void onDestroy() { super.onDetachedFromWindow(); } } } }