-2

When i pass captured image result from one activity to another activity image is loosing quality and getting blur. Is there any way to pass big size image from one activity to another activity without loosing quality???

1 Answers1

0

Avoid passing large objects via Bundle, use LruCache<Bitmap> to cache the Bitmap in memory for quick retrieval on the other end. See this link

https://developer.android.com/reference/android/util/LruCache.html

martinomburajr
  • 1,235
  • 14
  • 29