Posts by Douglas Caldas • 1 point
1 post
-
-1
votes2
answers818
viewsA: What is the most efficient way to resize bitmaps on Android?
After having your bitmap created, resize with the method createScaledBitmap(). Ex: // Cria o objeto Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream()); // Redimensiona…