[Picasso library][1]
Solution is instead of using bitmap to load image directly use a awesome Library called Picasso its just super fast.
Add picasso jar file to your project, Use picasso to load the Image like this
Picasso.with(context).load(new File(title)).centerCrop()
.resize(150, 150).error(R.drawable.ic_launcher).into(imageview);
where title is the image path which you want to load. Crop,resize, error are optional.
you can also load images from url.
[1]: http://square.github.io/picasso/
[Picasso library][1]
Solution is instead of using bitmap to load image directly use a awesome Library called Picasso its just super fast i know you really love this you can do this like this
Add picasso jar file to your project (Download picasso jar file here) Use picasso to load the Image like this
Picasso.with(context).load(new File(title)).centerCrop()
.resize(150, 150).error(R.drawable.ic_launcher).into(image);
where title is the image path which you want to load. Crop,resize, error are optional.
[1]: http://square.github.io/picasso/