Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app that contains a picture gallery when one of the items in the gallery is pressed, the item clicked views as an imageview fullscreen. WHat I am then trying to do is allow the user to select whether to download the imageview to the phone or set it as a background...is this possible? How would I go about this? Thanks!

share|improve this question

2 Answers

up vote 0 down vote accepted

you can use WallpaperManager Service to the the system wallpaper.

share|improve this answer
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), resourcId);
    WallpaperManager myWallpaperManager =     WallpaperManager.getInstance(getApplicationContext());
    try {
        myWallpaperManager.setBitmap(bitmap);

    } catch (IOException e) {
        e.printStackTrace();
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.