毕加索从URL加载黑色图像

时间:2017-12-13 15:28:00

标签: android android-recyclerview android-viewpager picasso

我的活动布局如下:

有一个视图寻呼机:

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/inner_frame_layout_padding"
    >

    <VerticalViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</FrameLayout>

viewpager中每个条目的列布局为:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="left"
    android:text="Default category"
    android:id="@+id/name"/>

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="horizontal"
    android:id="@+id/recyclerview"/>

</LinearLayout>

Recyclerview的每个项目都有布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"

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

<android.support.v7.widget.CardView
    android:id="@+id/cardView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    card_view:cardCornerRadius="3dp"
    card_view:cardElevation="10dp"
    card_view:cardMaxElevation="10dp"
    card_view:contentPadding="10dp">


    <RelativeLayout
        android:id="@+id/relativeLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center">

        <ImageView
            android:id="@+id/video_thumbnail"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:tint="@android:color/black"
            android:padding="5dp" />


    </RelativeLayout>

 </android.support.v7.widget.CardView>

</LinearLayout>

在onBindViewHolder中我使用的是这段代码:

Uri img_uri = Uri.parse(img_url);

    final String TAG = "loadImgUrl";
    Log.d(TAG, "Loading image from url: " + img_url);



    try {
        Picasso.with(context)
                .setLoggingEnabled(true);

        Picasso.with(context)
                .load(img_uri)
                .resize(250,250)
                .centerCrop()
                .error(R.drawable.call)
                .placeholder(R.drawable.event)
                .into(imageView);
    } catch (IllegalArgumentException iae) {
        iae.printStackTrace();
    }

但结果始终是黑色图像。相同的代码有效如果我使用存储在应用程序中的drawable。

毕加索日志或应用日志中没有错误。我也试过使用into(Target),但是同样的问题也出现了,并且永远不会调用错误回调。

任何人都知道为什么会这样?

2 个答案:

答案 0 :(得分:2)

您正在为显示图像的图像视图添加黑色。

 <ImageView
        android:id="@+id/video_thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:tint="@android:color/black"
        android:padding="5dp" />

只需移除色调android:tint="@android:color/black"

即可
 <ImageView
            android:id="@+id/video_thumbnail"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:padding="5dp" />

在此处阅读more关于色调以及何时使用

答案 1 :(得分:0)

这行问题android:tint =&#34; @android:color / black&#34;,当你应用它时,图像变黑,你的图像没有显示。