如何为Android动态壁纸创建设置活动

时间:2011-12-28 05:16:34

标签: java android android-activity settings live-wallpaper

如何在这样的动态壁纸中创建设置活动?

Example Picture

我使用简单的文本构建了设置活动,但遇到了一些问题。 第一个问题是我无法使用布局XML文件进行此活动。 第二种:当我尝试构建该活动时,我无法将目录设置为系统图标(drawable/ic_menu_more)。 我还需要使用SeekBar。

如果你帮助我,我将非常高兴=)

2 个答案:

答案 0 :(得分:7)

使用系统图标:

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

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

        </service>

在XML-livewallpaper.xml中:

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

答案 1 :(得分:1)

Android Dev网站上的LiveWallpaper示例正是如此: http://developer.android.com/resources/samples/CubeLiveWallpaper/index.html

更具体地说: http://developer.android.com/resources/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/CubeWallpaper2Settings.html

简而言之:

public class CubeWallpaper2Settings extends PreferenceActivity
implements SharedPreferences.OnSharedPreferenceChangeListener {

@Override
protected void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    getPreferenceManager().setSharedPreferencesName(
            CubeWallpaper2.SHARED_PREFS_NAME);
    addPreferencesFromResource(R.xml.cube2_settings);
    getPreferenceManager().getSharedPreferences().registerOnSharedPreferenceChangeListener(
            this);
}

@Override
protected void onResume() {
    super.onResume();
}

@Override
protected void onDestroy() {
    getPreferenceManager().getSharedPreferences().unregisterOnSharedPreferenceChangeListener(
            this);
    super.onDestroy();
}

public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
        String key) {
}
}