Android Picasso“fit()。centerCrop()”不加载图片

问题描述 投票:3回答:2

我想在我使用此代码部分时,根据宽度大小将图像(URL)显示为我的imageview中的最大宽度和可变高度:

imageView = (ImageView) convertView.findViewById(R.id.imageView);
Picasso.with(context).load(product.getImage()).into(imageView);

我可以将我的图像显示到imageview中。我也试过使用resize()。centerCrop()方法并且它成功运行。

但是,当我使用时

Picasso.with(上下文).load(product.getImage())拟合()centerCrop()代入(ImageView的)。;

要么

Picasso.with(上下文).load(product.getImage())拟合()centerInside()代入(ImageView的)。;

我的imageview什么都没显示。我不明白为什么。也许问题是我的列表设计和imageview。这是我的list_content_item.xml:

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

    android:weightSum="1">

    <ImageView 
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.80"
        app:srcCompat="@mipmap/ic_launcher" />

    <LinearLayout

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="1"
        android:layout_weight="0.2"
        android:orientation="horizontal">
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="match_parent"
            android:layout_weight="0.3"
            android:layout_height="match_parent" />
        <TextView
            android:id="@+id/tv_stats"
            android:layout_weight="0.7"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"/>

    </LinearLayout>

</LinearLayout>

我尝试了将ImageView的宽度和高度设置为wrap_content和match_parent,但它也没有用。我在哪里错过了?提前致谢。

android android-imageview picasso
2个回答
6
投票

adjustViewBounds做到了这一点:

android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop"

我发现使用XML属性而不是Picasso方法来配置此行为更容易。


0
投票

首先,在使用.之前,你没有添加fit()。用这个替换你的代码:Picasso.with(context).load(product.getImage()).fit().centerCrop().into(imageView

作为替代方案,您还可以使用android:scaleType="fitXY"在youn xml文件中为您的imageView定义scaletype。

然后将您的图像转换为imageview:Picasso.with(context).load(product. getImage).fit().into(imageView);

© www.soinside.com 2019 - 2024. All rights reserved.