gpt4 book ai didi

Android 使用 Picasso 库使图像适合全宽

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:22:32 24 4
gpt4 key购买 nike

我正在使用 Picasso 库加载图像,它工作正常,但在使用该库后图像不适合布局。如果我将图像直接设置到 ImageView 那么图像将适合布局。是否有任何选项可以在 Picasso 中传递方法以使图像适合布局

Picasso.with(getContext())
.load(R.drawable.dddd).
.into(lavdateimageView);

即使我尝试调用以下方法,但没有用

fit(),croptinside()

XML文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical">


<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:background="#ffffff"
>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#ffffff"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="260dp"
android:layout_marginBottom="3dp"
android:id="@+id/lavdate_image"
android:orientation="vertical"

>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"

android:id="@+id/lavdateimageView" />
</LinearLayout>
<TextView

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="New Text to"
android:padding="3dp"
android:background="#ffffff"
android:textColor="#000000"
android:layout_margin="3dp"
android:textStyle="bold"
android:id="@+id/sss" />

</LinearLayout>
</ScrollView>



</LinearLayout>

最佳答案

我也遇到了同样的问题所以我试了一下效果很好

Picasso.get()
.load(IMAGE_URL)
.fit()
.centerCrop()
.into(imageView);

关于Android 使用 Picasso 库使图像适合全宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40440107/

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