Risposte:
Probabilmente intendi Notification.Builder.setLargeIcon(Bitmap)
, vero? :)
Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.large_icon);
notBuilder.setLargeIcon(largeIcon);
Questo è un ottimo metodo per convertire le immagini delle risorse in Android Bitmap
.
... E/CommitToConfigurationOperation: Malformed snapshot token (size): ... E/NotificationService: Not posting notification with icon==0: Notification(pri=0 contentView=null vibrate=null sound=content://settings/system/notification_sound defaults=0x0 flags=0x10 color=0x00000000 vis=PRIVATE) ... E/NotificationService: WARNING: In a future release this will crash the app:...
Drawable myDrawable = getResources().getDrawable(R.drawable.logo);
Bitmap myLogo = ((BitmapDrawable) myDrawable).getBitmap();
Poiché l'API 22 getResources().getDrawable()
è obsoleta, possiamo utilizzare la seguente soluzione.
Drawable vectorDrawable = VectorDrawableCompat.create(getResources(), R.drawable.logo, getContext().getTheme());
Bitmap myLogo = ((BitmapDrawable) vectorDrawable).getBitmap();
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.my_drawable);
Context
può essere la tua corrente Activity
.
Ecco un altro modo per convertire risorse Drawable in Bitmap in Android:
Drawable drawable = getResources().getDrawable(R.drawable.input);
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
Innanzitutto creare un'immagine bitmap
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.image);
ora imposta bitmap nell'icona del Generatore di notifiche ....
Notification.Builder.setLargeIcon(bmp);
Nella res/drawable
cartella,
1. Creane uno nuovo Drawable Resources
.
2. Immettere il nome del file.
Un nuovo file verrà creato all'interno della res/drawable
cartella.
Sostituisci questo codice all'interno del file appena creato e sostituiscilo ic_action_back
con il tuo nome di file disegnabile.
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_action_back"
android:tint="@color/color_primary_text" />
Ora, è possibile utilizzarlo con Resource ID, R.id.filename
.