我有FlipperView with List并希望设置壁纸使用myWallpaperManager.setBitmap(位图),但我不明白如何拍摄FlipperView中加载的精确图片作为最后一个。 这与sample_0一起使用,但是如果我尝试使用id更改.decodeResource则不行。谢谢你的任何进步。
public boolean onOptionsItemSelected(MenuItem item) {
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.sample_0);
switch (item.getItemId()) {
case R.id.action_set_wal:
txtPages.setText("Done");
try {
WallpaperManager myWallpaperManager = WallpaperManager.getInstance(getApplicationContext());
myWallpaperManager.setBitmap(bitmap);
} catch (IOException e) {
}
return true;
}
return false;
}