J'avais besoin d'un ImageView et d'un Bitmap, donc le Bitmap est mis à l'échelle à la taille ImageView, et la taille de ImageView est la même que celle du Bitmap mis à l'échelle :).
Je cherchais à travers cet article pour savoir comment le faire, et j'ai finalement fait ce que je voulais, pas la manière décrite ici.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/acpt_frag_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/imageBackground"
android:orientation="vertical">
<ImageView
android:id="@+id/acpt_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:layout_margin="@dimen/document_editor_image_margin"
android:background="@color/imageBackground"
android:elevation="@dimen/document_image_elevation" />
puis dans la méthode onCreateView
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_scanner_acpt, null);
progress = view.findViewById(R.id.progress);
imageView = view.findViewById(R.id.acpt_image);
imageView.setImageBitmap( bitmap );
imageView.getViewTreeObserver().addOnGlobalLayoutListener(()->
layoutImageView()
);
return view;
}
puis code layoutImageView ()
private void layoutImageView(){
float[] matrixv = new float[ 9 ];
imageView.getImageMatrix().getValues(matrixv);
int w = (int) ( matrixv[Matrix.MSCALE_X] * bitmap.getWidth() );
int h = (int) ( matrixv[Matrix.MSCALE_Y] * bitmap.getHeight() );
imageView.setMaxHeight(h);
imageView.setMaxWidth(w);
}
Et le résultat est que l'image s'intègre parfaitement à l'intérieur, en conservant le rapport hauteur / largeur, et n'a pas de pixels restants supplémentaires d'ImageView lorsque le Bitmap est à l'intérieur.
Résultat
Il est important que ImageView ait wrap_content et AdjustViewBounds sur true, puis setMaxWidth et setMaxHeight fonctionneront, ceci est écrit dans le code source de ImageView,
/*An optional argument to supply a maximum height for this view. Only valid if
* {@link #setAdjustViewBounds(boolean)} has been set to true. To set an image to be a
* maximum of 100 x 100 while preserving the original aspect ratio, do the following: 1) set
* adjustViewBounds to true 2) set maxWidth and maxHeight to 100 3) set the height and width
* layout params to WRAP_CONTENT. */
ImageView
l'image? Par exemple, une image de 100dp x 150dp serait mise à l'échelleImageView
aux mêmes mesures? Ou voulez-vous dire comment redimensionner l'image auxImageView
limites. Par exemple, une image de 1000dp x 875dp serait mise à l'échelle en 250dp x 250dp. Avez-vous besoin de conserver les proportions?