Android - 使用Glide / Picasso

时间:2016-07-27 12:24:26

标签: android imageview picasso android-glide

  • 我正在尝试使用Glide加载网页上的文章缩略图, 但它返回一个空字段。
  • 与其他示例不同,此网址不会直接链接到PNG / JPG 等等,而不是我需要它加载的网站链接 默认缩略图。
  • ImageView已设置&正确初始化。
  • 我用过Glide&毕加索分开尝试,但它 ImageView是空白的。

ivGlide = (ImageView) findViewById(R.id.ivGlide);

String uriLoad = "http://www.recode.net/2016/7/26/12281110/facebook-video-360-degree-camera";

//USING GLIDE
Glide.with(Activity_glidetest.this)
.load(uriLoad) 
.centerCrop()
.into(ivGlide);

    //USING PICASSO
    Picasso.with(Activity_frienddetail.this)
    .load(uriLoad)
    .resize(78, 78)
    .centerCrop()
    .into(ivGlide);

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/ivGlide"
        android:layout_width="78dp"
        android:layout_height="78dp"
        android:src="@drawable/hand"
        android:layout_centerInParent="true" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您需要为Glide / Picasso提供指向文章图片的直接链接。尝试找到这个网站API,或使用一些“任何网站到API”工具,我相信它会给你文章形象。