如何使Picasso开始显示图像部分而不下载完成

时间:2016-10-21 09:38:22

标签: android android-imageview picasso android-image

目前我使用这个Java代码:

Picasso.with(mainAct)
        .load("http://IMAGE_URL.png")
        .into((ImageView) rootView.findViewById(R.id.background_image));

XML:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/image_card"
    android:layout_width="match_parent"
    android:layout_height="188dp"
    android:gravity="center"
    android:orientation="vertical">

  <RelativeLayout
     android:id="@+id/bgImage_relative"
     android:layout_width="match_parent"
     android:layout_height="match_parent">

       <ImageView
          android:id="@+id/background_image"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:scaleType="centerCrop"/>
        ...
  </RelativeLayout>

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

仅在下载完成后显示图像

图片网址有点慢,有些图片因&gt;而空白。 10秒

如何才能部分显示图片,就像网页浏览器一样

0 个答案:

没有答案