2013-04-03 35 views
0

如何在LiveWallpaper中使用PreferencesFragment?如何在LiveWallpaper中使用PreferencesFragment?

閱讀有關PreferenceFragments這裏:
http://developer.android.com/guide/topics/ui/settings.html
它說:

您可以將此片段,然後添加到活動就像你對其他任何片段。

我嘗試添加在我的代碼中調用getFragmentManager(),但代碼是LiveWallpaper,繼承BaseLiveWallpaperService(在AndEngine),這是不是一個活動明顯。

回答

3

,你可以在你的動態壁紙的xml文件定義設置頁面:

<wallpaper 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:thumbnail="@drawable/ic_launcher" 
    android:description="@string/wallpaper_description" 
    android:settingsActivity="be.nextleveldevelopment.package.MyPreferencesActivity"/> 

settingsActivity將啓用動態壁紙的設置按鈕。

相關問題