Tôi cần phải có ImageView và Bitmap, vì vậy Bitmap được chia tỷ lệ thành kích thước ImageView và kích thước của ImageView giống với Bitmap được chia tỷ lệ :).
Tôi đã xem qua bài đăng này để biết cách thực hiện và cuối cùng đã làm những gì tôi muốn, không phải theo cách được mô tả ở đây.
<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" />
và sau đó trong phương thức 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;
}
và sau đó là 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);
}
Và kết quả là hình ảnh phù hợp hoàn hảo bên trong, giữ tỷ lệ khung hình và không có thêm các pixel còn lại từ ImageView khi Bitmap ở bên trong.
Kết quả
Điều quan trọng là ImageView phải có quấn_content và điều chỉnhViewBound thành true, sau đó setMaxWidth và setMaxHeight sẽ hoạt động, điều này được viết trong mã nguồn của 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
kích thước hình ảnh? Ví dụ, hình ảnh của 100dp x 150dp sẽ có tỷ lệImageView
tương tự? Hay bạn có nghĩa là làm thế nào để chia tỷ lệ hình ảnh đếnImageView
giới hạn. Ví dụ: hình ảnh 1000dp x 875dp sẽ được thu nhỏ thành 250dp x 250dp. Bạn có cần duy trì tỷ lệ khung hình?