3

我需要在纵向活动中显示旋转 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 或更高版本中旋转有效。

4

1 回答 1

4

你可以使用 Picasso ReqgueshstCreator.rotate(float degree)

请参阅文档 http://square.github.io/picasso/javadoc/com/squareup/picasso/RequestCreator.html

前任)

Picasso.Builder builder = new Picasso.Builder(context);
Picasso picasso = builder.build() ;
ImageView imageId = (ImageView) findViewById(R.id.imageId) ;
picasso.load("URL").rotate(degrees).into(imageId) ;
于 2013-11-20T12:10:27.000 回答