目前我使用这个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秒
如何才能部分显示图片,就像网页浏览器一样?