Drawable wallpaper = getWallpaper();
取得できました。ばんざーい。
一応、リファレンスを見てみます。
Context | Android Developers
API Level5でdeprecatedになっていました。
(Eclipseでは警告が出ないのは何故でしょう…?)
何にしても、WallpaperManagerを使った方が良いようです。
WallpaperManager wpm = WallpaperManager.getInstance(getApplication());
Drawable wallpaper = wpm.getDrawable();
// または
Drawable wallpaper = wpm.getFastDrawable();
これでも問題なく取得できました。
壁紙の取得は簡単ですね。