Відповіді:
Ви, мабуть, маєте на увазі Notification.Builder.setLargeIcon(Bitmap)
, правда? :)
Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.large_icon);
notBuilder.setLargeIcon(largeIcon);
Це чудовий метод перетворення зображень ресурсів в 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();
Оскільки API 22 getResources().getDrawable()
застарілий, ми можемо використовувати наступне рішення.
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
може бути вашим поточним Activity
.
Ось ще один спосіб перетворення Drawable ресурсу в Bitmap в android:
Drawable drawable = getResources().getDrawable(R.drawable.input);
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
Спочатку створіть зображення растрового зображення
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.image);
тепер встановіть растровий файл у Icon Builder Icon ....
Notification.Builder.setLargeIcon(bmp);
У res/drawable
папці
1. Створіть нове Drawable Resources
.
2. Ім'я вхідного файлу.
Новий файл буде створений всередині res/drawable
папки.
Замініть цей код всередині новоствореного файлу та замініть ic_action_back
його драйвовим іменем.
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_action_back"
android:tint="@color/color_primary_text" />
Тепер, ви можете використовувати його з Resource ID, R.id.filename
.