HoJunLee
HoJunLee

Reputation: 338

There is no way to screenshot background of view?

I want to make a android app that have background is blurred-HomeScreen.

Like a iOS do usually.

So I make app that

  1. App launching with transparent Activity.

    1. (transparent Activity) capture whole screen and save into sd card for png file.
  2. Process blurred image of step 2.

  3. Start mainActivity with blurred image of step 3.

But, at Step 2, my app just captured transparent image.

There is no way to capture HomeScreen without rooting?

Upvotes: 0

Views: 634

Answers (1)

Cocorico
Cocorico

Reputation: 2018

Maybe take a look at this : http://developer.android.com/reference/android/app/WallpaperManager.html

WallpaperManager.getDrawable();

Upvotes: 1

Related Questions