-1

I know there's a lot of information about creating a live wallpaper with renderscript, but I thought I read somewhere that this way of doing things would be deprecated. I don't know if I just imagined that or not, but I don't want to start learning something that won't be supported in the future.

Any good resources or helpful links?

genpfault
  • 51,148
  • 11
  • 85
  • 139
travis
  • 159
  • 3
  • 14

2 Answers2

0

There are lot of examples available for Live Wallpapers.

http://www.emirac.net/android/index0.html

http://www.basic4ppc.com/forum/basic4android-getting-started-tutorials/12605-android-live-wallpaper-tutorial.html

Simplest example of an Android live wallpaper

Community
  • 1
  • 1
Desu
  • 464
  • 4
  • 6
  • These seem to be for 2.1, I'm looking for something that takes into account performance, such as renderscript. However renderscript is deprecated, which is what I've mentioned in the question... – travis Jul 09 '13 at 18:07
0

As you can see that it is deprecated from API 16 so that is Android 4.1

http://developer.android.com/reference/android/renderscript/RenderScriptGL.html

so in that case have a look at this.

https://groups.google.com/forum/#!topic/android-developers/m194NFf_ZqA

You can use OpenGL ES 2.0

http://www.learnopengles.com/how-to-use-opengl-es-2-in-an-android-live-wallpaper/

Ayush
  • 3,989
  • 1
  • 26
  • 34