Android动态壁纸开发

原文:http://www.androiddevblog.net/android/creating-android-live-wallpaper
动态壁纸主要使用以下两个类:
WallpaperService and WallpaperService.Engine
WallpaperService比普通的Service多了一个onCreateEngine()方法,声明如下:
abstract WallpaperService.Engine onCreateEngine(),返回WallpaperService.Engine对象。

编写动态壁纸步聚如下:
1AndroidManifest.xml















2,编写WallpaperService的子类,重载onCreateEngine方法,让此方法返回一个我们自己的 WallpaperService.Engine的实现类。

未完。

你可能感兴趣的:(Android,.net,XML)