私は自分の拳のライブ壁紙を作成しています。thisチュートリアルに従ってください。WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPERでエラーが発生する
WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER
WallpaperManager.COMMAND_DROP
WallpaperManager.COMMAND_SECONDARY_TAP
WallpaperManager.COMMAND_TAP
WallpaperManager.WALLPAPER_PREVIEW_META_DATA
は任意のものです:この
Intent intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
new ComponentName(this, LiveWallService.class));
とコンパイラこれらsuggessionsを提供しachiveしようとしたときに、しかし、私はこの2行
WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER
WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT
にエラーcan not be resolved or is not a field
を取得しています違う...?
'' ACTION_CHANGE_LIVE_WALLPAPER''と '' EXTRA_LIVE_WALLPAPER_COMPONENT''はAPI 16+機能していることに注意してください。 – harism
ありがとう、ありがとう、それは固定されています... – Arsalan