Android пишем живые обои

Описание: Разработка и отладка приложений. Упор на 3D-графику.

dyvniy M
Автор темы, Администратор
Администратор
Аватара
dyvniy M
Автор темы, Администратор
Администратор
Возраст: 41
Репутация: 1
Лояльность: 1
Сообщения: 3579
Зарегистрирован: Ср, 10 октября 2012
С нами: 11 лет 6 месяцев
Профессия: Программист
Откуда: Россия, Москва
ICQ Сайт Skype ВКонтакте

#1 dyvniy » Пт, 30 мая 2014, 11:58:15

Спойлер
Пишем Live Wallpapers (живые обои) для Android
http://www.mobilab.ru/articles/118

Добавлено спустя 22 минуты 56 секунд:
Пишем живые обои с часами
http://habrahabr.ru/post/124322/

Добавлено спустя 2 минуты 58 секунд:
Пишем Live Wallpapers (живые обои) для Android.
http://shadowsshot.ho.ua/docs014.html
Вложения
StarFields.zip
(61.93 КБ) 112 скачиваний
Изображение

dyvniy M
Автор темы, Администратор
Администратор
Аватара
dyvniy M
Автор темы, Администратор
Администратор
Возраст: 41
Репутация: 1
Лояльность: 1
Сообщения: 3579
Зарегистрирован: Ср, 10 октября 2012
С нами: 11 лет 6 месяцев
Профессия: Программист
Откуда: Россия, Москва
ICQ Сайт Skype ВКонтакте

#2 dyvniy » Сб, 7 июня 2014, 15:24:52

CubeWallpaper является стандартным примером, он есть в каждой sdk.
Изображение

dyvniy M
Автор темы, Администратор
Администратор
Аватара
dyvniy M
Автор темы, Администратор
Администратор
Возраст: 41
Репутация: 1
Лояльность: 1
Сообщения: 3579
Зарегистрирован: Ср, 10 октября 2012
С нами: 11 лет 6 месяцев
Профессия: Программист
Откуда: Россия, Москва
ICQ Сайт Skype ВКонтакте

#3 dyvniy » Ср, 18 июня 2014, 23:20:19

http://www.codeproject.com/Articles/108390/How-To-Create-Android-Live-Wallpaper

Добавлено спустя 2 минуты 32 секунды:
:ugeek:

Добавлено спустя 3 минуты 24 секунды:
реагировали на смену рабочих столов
http://habrahabr.ru/post/124322/
Изображение

dyvniy M
Автор темы, Администратор
Администратор
Аватара
dyvniy M
Автор темы, Администратор
Администратор
Возраст: 41
Репутация: 1
Лояльность: 1
Сообщения: 3579
Зарегистрирован: Ср, 10 октября 2012
С нами: 11 лет 6 месяцев
Профессия: Программист
Откуда: Россия, Москва
ICQ Сайт Skype ВКонтакте

#4 dyvniy » Сб, 28 июня 2014, 22:14:40

Живые обои на OpenGL ES 2.0
http://www.learnopengles.com/how-to-use-opengl-es-2-in-an-android-live-wallpaper/
Спойлер
HOW TO USE OPENGL ES 2 IN AN ANDROID LIVE WALLPAPER
JULY 14, 2012 ADMIN 32 COMMENTS
I’ve recently been looking into creating my first Live Wallpaper for Android as an opportunity to learn more about OpenGL ES and hopefully create something neat at the same time.

Throughout our entire series of Android tutorials, we’ve been using GLSurfaceView to take care of the hard work of threading and initialization for us; imagine my surprise when I learned that there is no equivalent for live wallpapers!

What we’re going to cover in this lesson

Adding multiple live wallpapers to a single APK.
Adding a thumbnail and description to the live wallpaper.
Using a GLSurfaceView to drive the live wallpaper.
Adapting the internals of GLSurfaceView to implement our own initialization and threading.
Allowing the user to switch between the two.
If you want to do OpenGL in a live wallpaper, it seems that there are a few alternatives:

Do everything yourself. This might be a preferred option for some, but I won’t be exploring this in any more detail.
Use GLSurfaceView, and adapt it to a live wallpaper. This lets us reuse a lot of code, but since this class was written to be used inside of an activity as a view, it might behave a little weirdly if we try to use it in a live wallpaper.
Re-implement the features of GLSurfaceView. Robert Green has generously written up a re-implementation based on GLSurfaceView, and many have successfully based their wallpapers off of this code, so this might be one way to go. One caveat that I do have is that we need to duplicate a lot of the code and functionality inside GLSurfaceView, and we won’t be able to benefit from updates or variations between different versions of Android.
Since this is a research article, we’ll take a look at both options two and three. To start off, we’ll first look at adapting the existing GLSurfaceView for use within a live wallpaper. Later, we’ll see how we can use Robert Green’s work for rendering with OpenGL ES 2.0.

Here are the two main approaches we’re going to look at:

Approach 1: Using GLSurfaceView inside a live wallpaper
Approach 2: Using a custom live wallpaper based on the internals of GLSurfaceView
We’ll also look at combining the two approaches and allowing the user to select between the two. Let’s begin with the first approach: using GLSurfaceView.

Approach One: Using GLSurfaceView inside a live wallpaper

The first evidence I found that it was possible to use GLSurfaceView in a live wallpaper was from these files, by Ben Gruver:

https://github.com/JesusFreke/Penroser/blob/maste ... lpaper/GLWallpaperService.java
https://github.com/JesusFreke/Penroser/blob/maste ... ser/PenroserLiveWallpaper.java
I found these through this stack overflow question: http://stackoverflow.com/questions/4998533/android-live-wallpapers-with-opengl-es-2-0

Full credits to Ben Gruver for showing us one way that it could be done; in this article, we’ll work with our own adaptation of GLSurfaceView, with an emphasis on using it for OpenGL ES 2.0.

1. Creating the wallpaper service

Android Live Wallpapers are built off of WallpaperService, so the first thing we’ll do is create a new class called GLWallpaperService. Each service is really just a wrapper around an engine, which is subclassed from WallpaperService.Engine. This engine handles the actual lifecycle events of the live wallpaper.

We’ll be working with the Android OpenGL tutorials as a base, which can be downloaded from GitHub.

Start off by creating a new package to contain the live wallpaper classes. For this lesson, I’ll be using com.learnopengles.android.livewallpaper.
Inside this package, create a new class called GLWallpaperService.
Creating a new wallpaper service subclass

At the beginning of our new class, GLWallpaperService, extend WallpaperService:

public abstract class GLWallpaperService extends WallpaperService {
Creating a new wallpaper engine subclass

We’ll then create a new engine, so let’s also extend WallpaperService.Engine as an inner class:

public class GLEngine extends Engine {
Creating a custom subclass of GLSurfaceView

Inside the engine, create a new subclass of GLSurfaceView, called WallpaperGLSurfaceView:

class WallpaperGLSurfaceView extends GLSurfaceView {
private static final String TAG = "WallpaperGLSurfaceView";

WallpaperGLSurfaceView(Context context) {
super(context);
}

@Override
public SurfaceHolder getHolder() {
return getSurfaceHolder();
}

public void onDestroy() {
super.onDetachedFromWindow();
}
}
We’ll be using this special subclass of GLSurfaceView to handle initializing OpenGL. The two methods to take note of are getHolder() and onDestroy(). Let’s take a look at these two methods in more detail:

getHolder()
Normally, GLSurfaceView calls getHolder() to get the surface holder provided by its superclass, SurfaceView, which assumes that it’s part of an activity as part of the content view. Since we’re driving a live wallpaper, we don’t want to use this surface. Instead, we override getHolder() to call [WallpaperService.Engine].getSurfaceHolder() to get the surface that’s associated with the live wallpaper.
onDestroy()
We need a way of telling the GLSurfaceView when it’s no longer valid. There’s no onDestroy(), but there is an onDetachedFromWindow() that we can use. We create our own onDestroy() to call onDetachedFromWindow().
Now that we have our extended GLSurfaceView in place, we can add a few lifecycle events and helper methods to round out a basic implementation:

Adding lifecycle events to the engine

private static final String TAG = "GLEngine";

private WallpaperGLSurfaceView glSurfaceView;
private boolean rendererHasBeenSet;

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);
glSurfaceView = new WallpaperGLSurfaceView(GLWallpaperService.this);
}
We initialize glSurfaceView in onCreate(). Remember that these methods should be placed inside of our inner class, GLEngine, and not at the same level as the wallpaper service. Let’s add a lifecycle event to handle visibility:

@Override
public void onVisibilityChanged(boolean visible) {
super.onVisibilityChanged(visible);

if (rendererHasBeenSet) {
if (visible) {
glSurfaceView.onResume();
} else {
glSurfaceView.onPause();
}
}
}
Since we don’t have activity onPause() and onResume() events, we hook into the wallpaper engine’s onVisibilityChanged() event, instead. If the live wallpaper’s visible, we tell glSurfaceView to resume, and if it’s no longer visible, we tell it to pause.

We do check if the glSurfaceView is ready, since we shouldn’t call these methods unless a renderer has been set.

Let’s round out the life cycle events:

@Override
public void onDestroy() {
super.onDestroy();
glSurfaceView.onDestroy();
}
When the live wallpaper is destroyed, we tell glSurfaceView to stop rendering, using the custom onDestroy() method we defined earlier.

Adding helper methods to the engine

There’s also a couple of helper methods we’ll want to call from subclasses. Let’s define them now:

protected void setRenderer(Renderer renderer) {
glSurfaceView.setRenderer(renderer);
rendererHasBeenSet = true;
}

protected void setEGLContextClientVersion(int version) {
glSurfaceView.setEGLContextClientVersion(version);
}

protected void setPreserveEGLContextOnPause(boolean preserve) {
glSurfaceView.setPreserveEGLContextOnPause(preserve);
}
These methods simply wrap the glSurfaceView, so that we can call them from our subclasses.

2. Initializing OpenGL ES 2.0

The next step is to create a subclass that is derived from the GLWallpaperService that we’ve just created; this subclass will initialize OpenGL ES 2.0 and also initialize a custom renderer.

Create a new class, OpenGLES2WallpaperService, and add the following code:

public abstract class OpenGLES2WallpaperService extends GLWallpaperService {
@Override
public Engine onCreateEngine() {
return new OpenGLES2Engine();
}

class OpenGLES2Engine extends GLWallpaperService.GLEngine {

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);

// Check if the system supports OpenGL ES 2.0.
final ActivityManager activityManager =
(ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
final ConfigurationInfo configurationInfo =
activityManager.getDeviceConfigurationInfo();
final boolean supportsEs2 =
configurationInfo.reqGlEsVersion >= 0x20000;

if (supportsEs2)
{
// Request an OpenGL ES 2.0 compatible context.
setEGLContextClientVersion(2);

// On Honeycomb+ devices, this improves the performance when
// leaving and resuming the live wallpaper.
setPreserveEGLContextOnPause(true);

// Set the renderer to our user-defined renderer.
setRenderer(getNewRenderer());
}
else
{
// This is where you could create an OpenGL ES 1.x compatible
// renderer if you wanted to support both ES 1 and ES 2.
return;
}
}
}

abstract Renderer getNewRenderer();
}
As you can see, this is very similar to the OpenGL ES 2.0 initialization code that we’ve added to all of our activities in the Android tutorials. Calling setPreserveEGLContextOnPause() will ask the GLSurfaceView to preserve the OpenGL context, which will speed up pausing and restarting the live wallpaper by holding onto the surface.

3. Initializing a custom renderer

To round out the Java code, let’s add a final subclass, LessonThreeWallpaperService, which is going to use the renderer from lesson three as our live wallpaper:

public class LessonThreeWallpaperService extends OpenGLES2WallpaperService {
@Override
Renderer getNewRenderer() {
return new LessonThreeRenderer();
}
}
4. Adding the wallpaper to the manifest

Before we can install the live wallpaper on a device, we need to add it to the manifest and create a configuration file for it. Add the following to AndroidManifest.xml:

<service
android:name=".livewallpaper.LessonThreeWallpaperService"
android:label="@string/lesson_three_wallpaper_1"
android:permission="android.permission.BIND_WALLPAPER" >
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>

<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/wallpaper" />
</service>
This tells Android that this service is a live wallpaper, with the label set to @string/lesson_three_wallpaper_1. Let’s define a couple extra strings in strings.xml as follows:

<string name="lesson_three_wallpaper_1">Using GLSurfaceView</string>
<string name="lesson_three_wallpaper_2">Using re-implementation of GLSurfaceView</string>
<string name="lesson_three_wallpaper_3">Switching implementations</string>
We also need to create a wallpaper definition file. Create a new file, /res/xml/wallpaper.xml, and add the following:

<wallpaper xmlns:android="http://schemas.android.com/apk/res/android"
android:thumbnail="@drawable/ic_lesson_three" />
This tells Android that this wallpaper should use this thumbnail when the user looks at the list of live wallpapers.

5. Build the application and view the wallpaper.

Now we can build the app and check out the live wallpaper. Install the app to your device, then go to your live wallpapers. You should see the following:



After selecting the live wallpaper, you should see a preview of lesson 3 on the screen:



Caveats with GLSurfaceView

Here are some of the caveats I can think of off of the top of my head; since this is a research article, I’d love to get your feedback.

I currently don’t understand enough about how SurfaceView works to see if using a GLSurfaceView uses additional resources in allocating Surfaces that never get used, since we’re using the live wallpaper’s surface.
SurfaceView, from which GLSurfaceView is based, sets the surface to PixelFormat.RGB_565 by default, whereas the WallpaperService sets PixelFormat.RGBX_8888 by default (checked against the ICS sources).
Approach Two: Using a custom live wallpaper based on the internals of GLSurfaceView

[Note: The wallpaper has changed since this was first written, as Mark Guerra and other contributors have extended Robert Green's work at this GitHub repository: https://github.com/GLWallpaperService/GLWallpaperService. The rest of this section is no longer required for adding support for OpenGL ES 2.0.]

As the second part of this research article, we’ll also be creating a live wallpaper with Robert Green and Mark Guerra’s adaptation of the code from GLSurfaceView. For this, you’ll want to download GLWallpaperService from http://git.io/gbhjmQ. Since we already have a GLWallpaperService, let’s create a new package to contain this class, and let’s call it com.learnopengles.android.rbgrnlivewallpaper.

After you have copied the class from GitHub, be sure to update the package name and any imports.

1. Adding support for OpenGL ES 2.0.

The first thing to note with this wallpaper service is that it doesn’t seem to have support for OpenGL ES 2.0. We’ll add this support by using the source code for GLSurfaceView as a base.

Open up the GLWallPaperService we just downloaded, and let’s make the following changes:

Adding mEGLContextClientVersion

The first thing we’ll do is add a new variable called mEGLContextClientVersion. Add the following to the beginning of GLEngine:

private int mEGLContextClientVersion;
Adding a method to set the EGL context client version

The next thing we’ll need to do is adapt setEGLContextClientVersion() from GLSurfaceView. Add the following method before setRenderer():

public void setEGLContextClientVersion(int version) {
checkRenderThreadState();
mEGLContextClientVersion = version;
}
Updating DefaultContextFactory

The next thing we need to do is to update createContext() inside the class DefaultContextFactory. Update the interface EGLContextFactory and the class DefaultContextFactory as follows:

interface EGLContextFactory {
EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig, int eglContextClientVersion);

void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context);
}

class DefaultContextFactory implements EGLContextFactory {
private int EGL_CONTEXT_CLIENT_VERSION = 0x3098;

public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config, int eglContextClientVersion) {
int[] attrib_list = {EGL_CONTEXT_CLIENT_VERSION, eglContextClientVersion,
EGL10.EGL_NONE };

return egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT,
eglContextClientVersion != 0 ? attrib_list : null);
}
Updating EglHelper

We’ll also need to fix the call to createContext(). Find the call to mEGLContextFactory.createContext() which is located inside the class EglHelper, and update it as follows:

mEglContext = mEGLContextFactory.createContext(mEgl, mEglDisplay,
mEglConfig, mEGLContextClientVersion);
Since mEGLContextClientVersion has not been defined in this scope, add it to the beginning of EglHelper, and pass it in the constructor as follows:

private int mEGLContextClientVersion;

public EglHelper(EGLConfigChooser chooser,
EGLContextFactory contextFactory,
EGLWindowSurfaceFactory surfaceFactory, GLWrapper wrapper,
int eglContextClientVersion) {
...
this.mEGLContextClientVersion = eglContextClientVersion;
}
Updating GLThread

Now GLThread doesn’t compile, so we’ll need to define mEGLContextClientVersion in that scope, too. Add the following code:

private int mEGLContextClientVersion;

GLThread(GLWallpaperService.Renderer renderer, EGLConfigChooser chooser,
EGLContextFactory contextFactory,
EGLWindowSurfaceFactory surfaceFactory, GLWrapper wrapper,
int eglContextClientVersion) {
...
this.mEGLContextClientVersion = eglContextClientVersion;
}
Now we can update the call to new EglHelper as follows:

mEglHelper = new EglHelper(mEGLConfigChooser, mEGLContextFactory,
mEGLWindowSurfaceFactory, mGLWrapper, mEGLContextClientVersion);
Updating setRenderer()

Now that we’ve added the variables at the right scope levels, we can now adjust the call to new GLThread, and pass in the mEGLContextClientVersion from GLEngine. Update the call to new GLThread in setRenderer() as follows:

mGLThread = new GLThread(renderer, mEGLConfigChooser,
mEGLContextFactory, mEGLWindowSurfaceFactory, mGLWrapper,
mEGLContextClientVersion);
Updating BaseConfigChooser

There’s one more change we need to do before we can use setEGLContextClientVersion(). Update the class BaseConfigChooser as follows:

protected int mEGLContextClientVersion;

public BaseConfigChooser(int[] configSpec, int eglContextClientVersion) {
this.mEGLContextClientVersion = eglContextClientVersion;
mConfigSpec = filterConfigSpec(configSpec);
}

...

private int[] filterConfigSpec(int[] configSpec) {
if (mEGLContextClientVersion != 2) {
return configSpec;
}
/* We know none of the subclasses define EGL_RENDERABLE_TYPE.
* And we know the configSpec is well formed.
*/
int len = configSpec.length;
int[] newConfigSpec = new int[len + 2];
System.arraycopy(configSpec, 0, newConfigSpec, 0, len-1);
newConfigSpec[len-1] = EGL10.EGL_RENDERABLE_TYPE;
newConfigSpec[len] = 4; /* EGL_OPENGL_ES2_BIT */
newConfigSpec[len+1] = EGL10.EGL_NONE;
return newConfigSpec;
}
Updating ComponentSizeChooser

We’ll need to scope this new variable, so let’s update the constructor for ComponentSizeChooser:

public ComponentSizeChooser(int redSize, int greenSize, int blueSize,
int alphaSize, int depthSize, int stencilSize, int eglContextClientVersion) {
super(new int[] { EGL10.EGL_RED_SIZE, redSize,
EGL10.EGL_GREEN_SIZE, greenSize, EGL10.EGL_BLUE_SIZE,
blueSize, EGL10.EGL_ALPHA_SIZE, alphaSize,
EGL10.EGL_DEPTH_SIZE, depthSize, EGL10.EGL_STENCIL_SIZE,
stencilSize, EGL10.EGL_NONE }, eglContextClientVersion);
Updating SimpleEGLConfigChooser

We’ll need to keep scoping this variable in, so update SimpleEGLConfigChooser as follows:

public static class SimpleEGLConfigChooser extends ComponentSizeChooser {
public SimpleEGLConfigChooser(boolean withDepthBuffer, int eglContextClientVersion) {
super(4, 4, 4, 0, withDepthBuffer ? 16 : 0, 0, eglContextClientVersion);
Updating methods in GLEngine

Now that we’ve added the scoping, we’ll have to update our calls from our methods in GLEngine as follows:

mEGLConfigChooser = new SimpleEGLConfigChooser(true, mEGLContextClientVersion);
...
setEGLConfigChooser(new SimpleEGLConfigChooser(needDepth, mEGLContextClientVersion));
...
setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize,
blueSize, alphaSize, depthSize, stencilSize, mEGLContextClientVersion));
2. Initializing OpenGL ES 2.0.

Now that we’ve updated GLWallpaperView to add support for OpenGL ES 2.0, we can now subclass it to initialize OpenGL ES 2.0. Let’s copy the same OpenGLES2WallpaperService from before into our new package, com.learnopengles.android.rbgrnlivewallpaper:

public abstract class OpenGLES2WallpaperService extends GLWallpaperService {
@Override
public Engine onCreateEngine() {
return new OpenGLES2Engine();
}

class OpenGLES2Engine extends GLWallpaperService.GLEngine {

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);

// Check if the system supports OpenGL ES 2.0.
final ActivityManager activityManager =
(ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
final ConfigurationInfo configurationInfo =
activityManager.getDeviceConfigurationInfo();
final boolean supportsEs2 =
configurationInfo.reqGlEsVersion >= 0x20000;

if (supportsEs2)
{
// Request an OpenGL ES 2.0 compatible context.
setEGLContextClientVersion(2);

// Set the renderer to our user-defined renderer.
setRenderer(getNewRenderer());
}
else
{
// This is where you could create an OpenGL ES 1.x compatible
// renderer if you wanted to support both ES 1 and ES 2.
return;
}
}
}

abstract Renderer getNewRenderer();
}
3. Adding a renderer.

We can also copy LessonThreeWallpaperService from before, and use it as is:

public class LessonThreeWallpaperService extends OpenGLES2WallpaperService {
@Override
Renderer getNewRenderer() {
return new LessonThreeRenderer();
}
}
We have a compile error because GLWallpaperService doesn’t use the same renderer interface. Let’s go back to it and delete the following lines:

public interface Renderer extends GLSurfaceView.Renderer {

}
We’ll need to update some class references, so replace all instances of GLWallpaperService.Renderer with Renderer, and optimize imports. Our code should now compile.

4. Updating the manifest.

As before, we’ll need to update the manifest to add in the new live wallpaper. Add the following to AndroidManifest.xml:

<service
android:name=".rbgrnlivewallpaper.LessonThreeWallpaperService"
android:label="@string/lesson_three_wallpaper_2"
android:permission="android.permission.BIND_WALLPAPER" >
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>

<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/wallpaper" />
</service>
5. Build the application and view the wallpaper.

If everything went well, then you should now see two live wallpapers in the list, corresponding to the two that we’ve created:



When we select one of the wallpapers, we should see the following:



Taking the best of approaches one & two: switching between implementations in a single live wallpaper

We’ve now shown that we can use either implementation as a backing for our live wallpaper: either by using a GLSurfaceView directly with a few slight modifications, or by adapting Robert Green’s work (itself based off of the internals of GLSurfaceView) to support OpenGL ES 2.0.

What if we could switch between implementations, based on a user toggle? That could be a useful debugging feature: if ever a user has an issue with one implementation, they could always try the other.

To do this, we need a new service that will return either the first engine we created or the second, based on the configured setting. Let’s create a new package called com.learnopengles.android.switchinglivewallpaper, and let’s create a new class called, you guessed it, GLWallpaperService.

1. Updating GLWallpaperService to support switching

The first thing we’ll do is copy the entire class body of GLWallpaperService from com.learnopengles.android.livewallpaper into the new GLWallpaperService. The only difference is that we’ll rename the engine to GLSurfaceViewEngine.

The second thing we’ll do is copy the entire class body of GLWallpaperService from com.learnopengles.android.rbgrnlivewallpaper into the new GLWallpaperService; let’s call that engine RbgrnGLEngine.

We can update each engine to implement the following interface, so that we won’t have to duplicate code afterwards:

interface OpenGLEngine {
void setEGLContextClientVersion(int version);

void setRenderer(Renderer renderer);
}
The code is too long to paste in its entirety, so you can double check against the GitHub code here: https://github.com/learnopengles/Learn-OpenGLES-T ... lpaper/GLWallpaperService.java

2. Creating a new OpenGLES2WallpaperService to support switching

In com.learnopengles.android.switchinglivewallpaper, create a new OpenGLES2WallpaperService with the following code:

public abstract class OpenGLES2WallpaperService extends GLWallpaperService {
private static final String SETTINGS_KEY = "use_gl_surface_view";

@Override
public Engine onCreateEngine() {
if (PreferenceManager.getDefaultSharedPreferences(
OpenGLES2WallpaperService.this).getBoolean(SETTINGS_KEY, true)) {
return new ES2GLSurfaceViewEngine();
} else {
return new ES2RgbrnGLEngine();
}
}

class ES2GLSurfaceViewEngine extends GLWallpaperService.GLSurfaceViewEngine {

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);
init(this);
}
}

class ES2RgbrnGLEngine extends GLWallpaperService.RgbrnGLEngine {

@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);
init(this);
}
}

void init(OpenGLEngine engine) {
// Check if the system supports OpenGL ES 2.0.
final ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
final ConfigurationInfo configurationInfo = activityManager
.getDeviceConfigurationInfo();
final boolean supportsEs2 = configurationInfo.reqGlEsVersion >= 0x20000;

if (supportsEs2) {
// Request an OpenGL ES 2.0 compatible context.
engine.setEGLContextClientVersion(2);

// Set the renderer to our user-defined renderer.
engine.setRenderer(getNewRenderer());
} else {
// This is where you could create an OpenGL ES 1.x compatible
// renderer if you wanted to support both ES 1 and ES 2.
return;
}
}

abstract Renderer getNewRenderer();
}
As you can see, this is similar to the previous versions, except that it’s been updated to support switching. We can copy LessonThreeWallpaperService over to the new package as-is.

3. Adding a settings activity

The next thing we want to do is add a settings activity. Create WallpaperSettings as follows:

public class WallpaperSettings extends PreferenceActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
}
}
Creating the settings XML

We also need to create an XML for the settings. Create preferences.xml under /res/xml:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:key="use_gl_surface_view"
android:title="Use GLSurfaceView"
android:defaultValue="true"/>
</PreferenceScreen>
Creating a new wallpaper XML

We’ll also need to create a new wallpaper.xml. Copy the existing wallpaper.xml to switching_wallpaper.xml, and update its content as follows:

<?xml version="1.0" encoding="utf-8"?>
<wallpaper xmlns:android="http://schemas.android.com/apk/res/android"
android:settingsActivity="com.learnopengles.android.switchinglivewallpaper.WallpaperSettings"
android:thumbnail="@drawable/ic_lesson_three" />
Updating the manifest

We’ll now need to update AndroidManifest.xml. Add the following:

<service
android:name=".switchinglivewallpaper.LessonThreeWallpaperService"
android:label="@string/lesson_three_wallpaper_3"
android:permission="android.permission.BIND_WALLPAPER" >
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>

<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/switching_wallpaper" />
</service>
<activity
android:name=".switchinglivewallpaper.WallpaperSettings"
android:exported="true"
android:label="@string/lesson_three_wallpaper_3"
android:permission="android.permission.BIND_WALLPAPER"
android:theme="@style/WallpaperSettingsLight" >
</activity>
Adding new themes

We defined a new theme, so let’s add the following style definitions:

/res/values/styles.xml

https://github.com/learnopengles/Learn-OpenGLES-T ... SLessons/res/values/styles.xml

/res/values-v11/styles.xml

https://github.com/learnopengles/Learn-OpenGLES-T ... sons/res/values-v11/styles.xml

/res/values-v14/styles.xml

https://github.com/learnopengles/Learn-OpenGLES-T ... sons/res/values-v14/styles.xml

These styles are adapted from the Theme.WallpaperSettings and Theme.Light.WallpaperSettings included with Android, but also updated so that they use the Holo theme on later versions of Android.

If you’re having trouble building the project after adding the new styles, change your build target to a newer version of Android (note that the app will still work on older versions, as they will simply ignore the XML).

4. Viewing the new live wallpaper

We can now build and run the application, and we’ll see our new live wallpaper in the list:



If we select the new one, “Switching implementations”, and open up the settings, we’ll see something like this:



We can use the toggle to change implementations; the toggle won’t take effect until we go back to the list of live wallpapers and then go back in to view the preview.

Wrapping up

I’d love to hear from those who have actually implemented live wallpapers, as well as from Robert Green and the Android guys if they ever come across this post! I just got this working with a few hours of research and development, but when it comes to this, I have nowhere near the same level of experience as some of the experts out there. I’d love to hear from you about the upsides and downsides of both using GLSurfaceView and of rolling out a custom derivative implementation based on the internals of GLSurfaceView.

Further exercises

Is there a better way to handle switching between implementations? How would you do it? Also, what would you do to continue animating the wallpaper even when the settings screen is displayed on top? Maybe when the settings screen appears you can grab a reference to the wallpaper and manually call its onVisibilityChanged()? You could also check for isPreview() directly in onVisibilityChanged(), but that will lead to problems when you exit the preview window.

I defined the settings key string in two places (once as a constant in Java, and once as an XML string); what would you do to avoid this duplication?

исходники https://github.com/learnopengles/Learn-OpenGLES-Tutorials
Вложения
Learn-OpenGLES-Tutorials-master.zip
Исходники урока
(344.8 КБ) 97 скачиваний
Изображение


Название раздела: Программирование (под Desktop и Android)
Описание: Разработка и отладка приложений. Упор на 3D-графику.

Быстрый ответ


Введите код в точности так, как вы его видите. Регистр символов не имеет значения.
Код подтверждения
:) ;) :hihi: :P :hah: :haha: :angel: :( :st: :_( :cool: 8-| :beee: :ham: :rrr: :grr: :* :secret: :stupid: :music: Ещё смайлики…
   

Вернуться в «Программирование (под Desktop и Android)»

Кто сейчас на форуме (по активности за 15 минут)

Сейчас этот раздел просматривают: 102 гостя