我尝试使用远程视图从url设置图像。这是我使用的代码:
rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_item_default);
WidgetItem item = mWidgetItems.get(position);
rv.setImageViewUri(R.id.imageDeal, Uri.parse(item.urlImage));
布局代码:
<ImageView
android:id="@+id/imageDeal"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:layout_marginBottom="2dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/mem" />
小部件已启动,但imageView中没有打印图像。
答案 0 :(得分:4)
答案 1 :(得分:1)
FutureTarget<Bitmap> futureTarget = Glide.with(mContext)
.load(resizedImageUrl)
.asBitmap()
.into(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL);
try
{
rv.setImageViewBitmap(R.id.icon, futureTarget.get());
} catch (InterruptedException | ExecutionException e)
{
e.printStackTrace();
}
Glide.clear(futureTarget);