Click here to Skip to main content
15,886,639 members
Articles / Mobile Apps / Android

How To Create Android Live Wallpaper

Rate me:
Please Sign up or sign in to vote.
4.82/5 (139 votes)
20 Mar 2012CPOL4 min read 883.7K   49.2K   144  
Step-by-step Android Live Wallpaper creation guide for absolute beginners
<?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>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer Darim Vision
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions