gpt4 book ai didi

android - picasso 图像自己旋转

转载 作者:行者123 更新时间:2023-11-29 23:01:48 25 4
gpt4 key购买 nike

我按如下方式使用 Picasso 库,但是当我拍摄图像并将其放入 ImageView 时,图像会旋转。我想知道是什么导致了这个问题?

 <ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:id="@+id/imageViewUser"
android:background="@color/colorAccent"
android:contentDescription="@string/description" />

imageViewUser = (ImageView) findViewById(R.id.imageViewUser);

Picasso.get().load(url).placeholder(R.drawable.image)
.error(R.drawable.blank_profile)
.resize(100, 100)
.centerCrop()
.memoryPolicy(MemoryPolicy.NO_CACHE, MemoryPolicy.NO_STORE)
.networkPolicy(NetworkPolicy.NO_CACHE, NetworkPolicy.NO_STORE)
.into(imageViewUser);

最佳答案

有时它会发生在某些三星设备上。一种方法是手动旋转所需的图像。阅读更多 Photo rotated from camera (SAMSUNG device)

关于android - picasso 图像自己旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56894398/

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