具有Picasso和支持库的android 2.2中的ImageView旋转并且不起作用
作者:互联网
我需要在人像活动中显示旋转90度的ImageView,
由于我正在使用picasso库进行缓存,因此我无法自由访问位图对象,
并使用Support lib进行轮换,我没有得到应有的结果,
该代码如下所示:
<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或更高版本中可以使用.
解决方法:
您可以使用Picasso ReqgueshstCreator.rotate(浮动度)
见文件
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) ;
标签:picasso,android-2-2-froyo,image-rotation,android 来源: https://codeday.me/bug/20191030/1965935.html