Click here to Skip to main content
Licence CPOL
First Posted 9 Sep 2010
Views 140,778
Downloads 7,231
Bookmarked 61 times

How To Create Android Live Wallpaper

By Evgeny Vinnik | 9 Sep 2010
Step-by-step Android Live Wallpaper creation guide for absolute beginners
12 votes, 12.2%
1
1 vote, 1.0%
2
2 votes, 2.0%
3
13 votes, 13.3%
4
70 votes, 71.4%
5
4.76/5 - 98 votes
12 removed
μ 4.30, σa 2.36 [?]
smpte_wide.png

Introduction

Starting with Android 2.1. (API Level 7), developers can create live wallpapers - richer, animated, interactive backgrounds - on their home screens. A live wallpaper is very similar to a normal Android application: you can create menu with settings, use SGL and OpenGL for drawing, accelerometer, etc.

In this article, I want to demonstrate how to create live wallpaper from scratch. Step-by-step, we will create live wallpaper that would output TV test pattern on out home screen. Just like on real TV during night hours!

This article will highlight the following aspects of Live Wallpaper development:

  1. Drawing on graphic primitives (circles, rectangles) using android.graphics.Canvas class
  2. Developing of applications for screens with different resolution and orientation
  3. Creation of settings dialog for live wallpaper
  4. Reading of variables values for resource XML file
  5. Actual creation of live wallpaper for Android

Background

In this article, I show how to create a very simple live wallpaper.

On the internet, you can find much more profound and cooler apps, but I want you to check the following examples:

Using the Code

1. Making Android Virtual Device

As I mentioned earlier, we have to create an appropriate Android Virtual Device (AVD) to run our application.

Open Android SDK and AVD manager.

avd_manager.png

And create AVD with the following capabilities:

  1. Target platform Android 2.1 or higher
  2. With accelerometer support (we will add support for screen rotation detection)
  3. Touch-screen support

Android_Virtual_Device.png

Resolution might be any. Our application will detect screen resolution and rescale graphic elements if necessary.

2. Creating Project Files

I named the app as LiveWallpaper.

When creating Android project, set Build Target as Android 2.1.

LiveWallpaper.png

By default, project will be created with the following files:

generated_files.png

We have to change them slightly and add new files that would contain values for application's variables.

First, delete layout folder and main.xml file in res directory. This file is used for creating layout for application controls which we won't use in our project.

Instead of this, create folder xml where we will create two files livewallpaper.xml and livewallpaper_settings.xml that will contain values for live wallpaper service and settings dialog.

Livewallpaper.xml contains the following data:

<?xml version="1.0" encoding="utf-8"?>
<wallpaper xmlns:android="http://schemas.android.com/apk/res/android"
    android:settingsActivity="ca.jvsh.livewallpaper.LiveWallpaperSettings"
    android:thumbnail="@drawable/icon"/>

Where wallpaper tag says that we are creating live wallpaper service. This file will be processed during apk file creation.

Livewallpaper_settings.xml contains description of available settings for our live wallpaper:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    android:title="@string/livewallpaper_settings"
    android:key="livewallpaper_settings">

    <ListPreference
        android:key="livewallpaper_testpattern"
        android:title="@string/livewallpaper_settings_title"
        android:summary="@string/livewallpaper_settings_summary"
        android:entries="@array/livewallpaper_testpattern_names"
        android:entryValues="@array/livewallpaper_testpattern_prefix"/>
    <CheckBoxPreference android:key="livewallpaper_movement"
        android:summary="@string/livewallpaper_movement_summary"
        android:title="@string/livewallpaper_movement_title"
        android:summaryOn="Moving test pattern"
        android:summaryOff="Still test pattern"/>
</PreferenceScreen>

Where tag ListPreference shows that we provide user option to choose between several items and the tag CheckBoxPreference shows that we have check box (Yes/No) option.

File strings.xml in values folder contains all strings values that we are using in our project.

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <!-- General -->
    <skip />
    <!-- Application name -->
    <string name="app_name">Live Wallpaper</string>

    <string name="livewallpaper_settings">Settings</string>
    <string name="livewallpaper_settings_title">Select test pattern</string>
    <string name="livewallpaper_settings_summary">
		Choose which test pattern to display</string>
    <string name="livewallpaper_movement_title">Motion</string>
    <string name="livewallpaper_movement_summary">
		Apply movement to test pattern</string>
</resources>

You can modify this file during localization of your software.

Also in project, you will find testpattern.xml file. This file contains TV test patterns names and colors that they are using (TV test patterns mostly consist of rectangles).

3. Let's Explore the Code!

You can check the code in the project file I've provided. I will just show the important points.

How to detect screen size and orientation?

You have to use DisplayMetrics class!

DisplayMetrics metrics = new DisplayMetrics();
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
display.getMetrics(metrics);

mRectFrame = new Rect(0, 0, metrics.widthPixels, metrics.heightPixels);


int rotation = display.getOrientation();
if(rotation == Surface.ROTATION_0 || rotation == Surface.ROTATION_180)
    mHorizontal = false;
else
    mHorizontal = true;

How to draw a gradient?

You should use GradientDrawable class!

private Rect                mGradientRect;
GradientDrawable            mGradient;

mGradientRect = new Rect(10,10, 40, 40);
mGradient = new GradientDrawable(Orientation.LEFT_RIGHT, new int[] 
		{ 0xff050505, 0xfffdfdfd });
mGradient.setBounds(mGradientRect);
mGradient.draw(c);

Check out this code:

public void onSharedPreferenceChanged(SharedPreferences prefs,
        String key)
{
    mShape = prefs.getString("livewallpaper_testpattern", "smpte");
    mMotion = prefs.getBoolean("livewallpaper_movement", true);
    readColors();
}

private void readColors()
{
    int pid = getResources().getIdentifier(mShape + "colors", "array", getPackageName());

    rectColor = getResources().getIntArray(pid);
    mRectCount = rectColor.length;
    mColorRectangles = new Rect[mRectCount];

    System.out.println("mRectCount "+mRectCount);
    initFrameParams();
}

Those functions are called when we change our settings.

In readColors() function, we are reading color values from resources (testpatterns.xml file).

4. Editing AndroidManifest.xml

Proving a proper AndroidManifest.xml file is a crucial point if you want your app to be accepted at Android Market.

In our project, Android Manifest looks as follows:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ca.jvsh.livewallpaper"
    android:versionName="1.0.20100908.1"
    android:versionCode="1">

    <uses-sdk android:minSdkVersion="7" />
    <uses-feature android:name="android.software.live_wallpaper" />

    <application android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:permission="android.permission.BIND_WALLPAPER">

        <service android:name=".LiveWallpaper"
            android:label="@string/app_name"
            android:icon="@drawable/icon">

            <intent-filter>
                <action android:name="android.service.wallpaper.WallpaperService" />
            </intent-filter>
            <meta-data android:name="android.service.wallpaper"
                android:resource="@xml/livewallpaper" />

        </service>

        <activity android:label="@string/livewallpaper_settings"
            android:name=".LiveWallpaperSettings"
            android:theme="@android:style/Theme.Light.WallpaperSettings"
            android:exported="true"
            android:icon="@drawable/icon">
        </activity>

    </application>
</manifest>

It is very important to set up android:permission="android.permission.BIND_WALLPAPER" because this will allow the wallpaper to stay on your home screen.

5. Result

smpte_standard.png

ebu.png

Points of Interest

Android live wallpapers are supported only on Android 2.1. (API level 7) and higher versions of the platform. To ensure that your application can only be installed on devices that support live wallpapers, remember to add to the applications's manifest before publishing to Android Market which indicates to Android Market and the platform that your app requires Android 2.1 or higher.

<uses-feature android:name="android.software.live_wallpaper" />

which tells Android Market that your application includes a live wallpaper.

History

  • 2010.08.09 Initial sample commit

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Evgeny Vinnik

Software Developer
Darim Vision
Canada Canada

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionError Pinmembersmilieegurl14:24 2 Jan '12  
AnswerRe: Error with xml PinmemberEvgeny Vinnik8:38 3 Jan '12  
GeneralMy vote of 3 PinmemberMember 829745822:48 6 Oct '11  
Questionhow do I open the samples? PinmemberDiamagin11:06 18 Sep '11  
GeneralRe: how do I open the samples? PinmemberJaydeep Jadav18:23 24 Nov '11  
AnswerRe: how do I open the samples? PinmemberTH3ORY14:46 2 Feb '12  
Generalhelp on livewall PinmemberMember 78453477:39 9 May '11  
GeneralRe: help on livewall PinmemberEvgeny Vinnik12:21 9 May '11  
QuestionCan we use the SDK's "View Animation" package from within Live Wallpaper? PinmemberMember 771758022:11 3 Mar '11  
AnswerRe: Can we use the SDK's "View Animation" package from within Live Wallpaper? PinmemberEvgeny Vinnik10:47 4 Mar '11  
GeneralRe: Can we use the SDK's "View Animation" package from within Live Wallpaper? PinmemberGeorgeFreeman7:15 15 Mar '11  
GeneralConfigure crashes this live wallpaper Pinmembertimverhoeven8:28 13 Feb '11  
GeneralRe: Configure crashes this live wallpaper PinmemberEvgeny Vinnik13:57 13 Feb '11  
GeneralRe: Configure crashes this live wallpaper Pinmembertimverhoeven2:36 14 Feb '11  
GeneralRe: Configure crashes this live wallpaper PinmemberEvgeny Vinnik9:31 14 Feb '11  
GeneralRe: Configure crashes this live wallpaper PinmemberEvgeny Vinnik7:56 30 Mar '11  
GeneralRe: Configure crashes this live wallpaper Pinmembertimverhoeven9:48 30 Mar '11  
GeneralRe: Configure crashes this live wallpaper PinmemberMember 852201515:13 31 Dec '11  
GeneralRe: Configure crashes this live wallpaper PinmemberEvgeny Vinnik8:27 3 Jan '12  
GeneralRe: Configure crashes this live wallpaper - thanks for update PinmemberMember 852201517:11 6 Feb '12  
Question??? PinmemberPedropassos10:37 24 Jan '11  
AnswerRe: ??? PinmemberEvgeny Vinnik10:59 24 Jan '11  
General3D in LiveWallpaper Pinmemberzarex23:54 19 Jan '11  
GeneralRe: 3D in LiveWallpaper PinmemberEvgeny Vinnik8:04 20 Jan '11  
Questionusing frame by frame animation PinmemberFredyFoxX10:54 16 Jan '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120209.1 | Last Updated 9 Sep 2010
Article Copyright 2010 by Evgeny Vinnik
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid