3

我尝试使用远程视图从 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 中没有打印图像。

4

2 回答 2

3

您的问题在这里得到解答:https ://groups.google.com/forum/?fromgroups=#!topic/android-developers/jupslaeAEuo

于 2013-03-01T05:41:59.853 回答
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);
于 2017-03-01T01:47:26.130 回答