画像を回転すると、画像の下に空白ができます
画像を埋める方法は?ブランクなし
「scaleType:fitxy」を使用すると、移動(縮小、拡大)が機能しません
私の悪い英語でごめんなさい;;
xml: ImageView android:id="@+id/image" android:layout_gravity="fill_vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:adjustViewBounds="true" android:scaleType="matrix"
回転:
private Bitmap getImageProcess(Bitmap bmp, int nRotate, int viewW, int viewH) {
Matrix matrix = new Matrix();
matrix.postRotate(nRotate);
Bitmap rotateBitmap = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(),
bmp.getHeight(), matrix, true);
return rotateBitmap;
}