段
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>
答案 0 :(得分:0)
您需要为Glide / Picasso提供指向文章图片的直接链接。尝试找到这个网站API,或使用一些“任何网站到API”工具,我相信它会给你文章形象。