I am having image large size image, at run time i want read image from storage and scale it so that its weight and size will be reduce and i can use it as thumbnail when user click on thumbnail i will display full size image.
|
My Solution
|
|||
|
Here is a more complete solution to scaling down a Bitmap to thumbnail size. It expands on the Bitmap.createScaledBitmap solution by maintaining the aspect ratio of the images and also padding them to the same width so that they look good in a ListView. Also, it would be best to do this scaling once and store the resulting Bitmap as a blob in your Sqlite database. I have included a snippet on how to convert the Bitmap to a byte array for this purpose.
|
|||
|
|
|
Use BitmapFactory.decodeFile(...) to get your Bitmap object and set it to an ImageView with ImageView.setImageBitmap(). On the ImageView set the layout dimensions to something small, eg:
Add an onClickListener to the ImageView and launch a new activity, where you display the image in full size with
or specify some larger size. |
|||||||||||||
|
|
Try this
This Utility is available from API_LEVEl 8 ReferThis |
|||
|
|
|
|||
|
|