widgets tutorial tipos studio sgoliver form crear con como aide android imageview remoteview appwidgetprovider

tutorial - setImageViewUri desde la URL en la vista remota en el widget de Android



widget android studio tutorial (2)

Su pregunta se responde aquí: https://groups.google.com/forum/?fromgroups=#!topic/android-developers/jupslaeAEuo

Intento establecer la imagen desde url con vista remota. Aquí está el código que uso:

rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_item_default); WidgetItem item = mWidgetItems.get(position); rv.setImageViewUri(R.id.imageDeal, Uri.parse(item.urlImage));

Y el código del diseño:

<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" />

Widget se inicia pero no hay imagen impresa en el imageView.


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);