Respuestas:
Probablemente quieras decir Notification.Builder.setLargeIcon(Bitmap)
, ¿verdad? :)
Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.large_icon);
notBuilder.setLargeIcon(largeIcon);
Este es un gran método para convertir imágenes de recursos en Android Bitmap
s.
... 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();
Como API 22 getResources().getDrawable()
está en desuso, podemos usar la siguiente solución.
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
puede ser su actual Activity
.
Aquí hay otra forma de convertir recursos extraíbles en mapas de bits en Android:
Drawable drawable = getResources().getDrawable(R.drawable.input);
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
Primero cree una imagen de mapa de bits
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.image);
ahora establezca el mapa de bits en el icono del generador de notificaciones ...
Notification.Builder.setLargeIcon(bmp);
En la res/drawable
carpeta,
1. Crea una nueva Drawable Resources
.
2. Ingrese el nombre del archivo.
Se creará un nuevo archivo dentro de la res/drawable
carpeta.
Reemplace este código dentro del archivo recién creado y reemplace ic_action_back
con su nombre de archivo dibujable.
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_action_back"
android:tint="@color/color_primary_text" />
Ahora, se puede usar con la identificación de recursos, R.id.filename
.