画像を壁紙として設定する必要があるアプリケーションを開発しています。
コード:
WallpaperManager m=WallpaperManager.getInstance(this);
String s=Environment.getExternalStorageDirectory().getAbsolutePath()+"/1.jpg";
File f=new File(s);
Log.e("exist", String.valueOf(f.exists()));
try {
InputStream is=new BufferedInputStream(new FileInputStream(s));
m.setBitmap(BitmapFactory.decodeFile(s));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.e("File", e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.e("IO", e.getMessage());
}
また、次の権限を追加しました。
<uses-permission android:name="android.permission.SET_WALLPAPER" />
しかし、うまくいきません。ファイルはsdcardに存在します。どこで間違いを犯しましたか?