我需要在纵向活动中显示旋转 90 度的 ImageView,因为我使用 picasso 库进行缓存我无法自由访问位图对象,并且使用 Support 库进行旋转我没有得到我应该得到的结果,
代码“只是”如下:
<ImageView
android:id="@+id/imageId"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_weight="1"
android:rotation="90"
android:gravity="center"/>
有什么办法可以达到相同的结果吗?
在 android 4.0 或更高版本中旋转有效。