如果你将URI应用到位图并旋转它,我找到了如何旋转图片的解决方案,但我使用的是需要保持分辨率的非常大的图片,但如果我尝试使用位图并应用那些我得到的OutofMemory错误很快。
那么有没有一种方法可以在没有位图的情况下进行,或者我被卡住了?
答案 0 :(得分:0)
如果您只需要在ImageView
中显示旋转的图片,请尝试使用其rotation
属性。
例如,如果要将图像上下颠倒显示给用户,请下载图像并将其设置在ImageView
上。 ImageView
可能是这样的。
<ImageView
android:id="@+id/iv_upsidedown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:rotation="180"/>
生成的图像会颠倒过来。