gpt4 book ai didi

java - ImageView 在 Android 中旋转后不显示

转载 作者:行者123 更新时间:2023-11-29 09:11:45 26 4
gpt4 key购买 nike

实际上,我正在编写一个使用图像旋转的应用程序。但是当我旋转图像时,它什么也没有显示。

这是我的代码:

XML 文件:

<?xml version="1.0" encoding="utf-8" ?>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rotate_test_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/android"
android:src="@drawable/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:scaleType="matrix"
android:adjustViewBounds="true"
android:contentDescription="@string/android_description" >
</ImageView>

</LinearLayout>

Activity 文件:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.rotate_test_layout);
ImageView imageView = (ImageView)findViewById(R.id.android);
imageView.setScaleType(ScaleType.MATRIX);
Matrix matrix = new Matrix();
matrix.postRotate(90);
imageView.setImageMatrix(matrix);
}

最佳答案

你在这里犯了一个错误:

imageView.setImageMatrix(matrix);

您必须将该矩阵应用于现有的位图,而不是这样做,以获得一个新的位图,然后您可以将其分配给 ImageView。

Drawable drawable = getResources().getDrawables(R.drawable.android);
Bitmap existingBitmap = ((BitmapDrawable) drawable).getBitmap();
Bitmap rotated = Bitmap.createBitmap(existingBitmap, 0, 0, existingBitmap.getWidth(), existingBitmap.getHeight(), matrix, true);
imageView.setImageBitmap(rotated);

关于java - ImageView 在 Android 中旋转后不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11995076/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com