Drawable
オブジェクトを使用してカスタム通知バーを作成しようとしてDrawable
いますが、パラメーターで受信せず、のみを受信しますBitmap
。
問題:
通知に設定する別のアプリケーションのアイコンを取得する必要があります。以下のコードを使用してみました:
getPackageManager().getApplicationIcon(packageName);//Return a Drawable Object
//Problem
Notification.Builder builder = new Notification.Builder(context);
builder.setLargeIcon(Bitmap); //I don´t have this one, only a Drawable object.
ご覧のように。このオブジェクトを使用して通知バーに配置するにはどうすればよいですか?
期待される結果:
別のアプリケーションのアイコン、名前、およびこのアプリケーションへのアクションを使用して通知バーを作成します。
解決:
ありがとう、pietmauとkadrei。
以下のコードを使用してください。
public static Bitmap drawableToBitmap(Drawable drawable) {
if (drawable instanceof BitmapDrawable) {
return ((BitmapDrawable) drawable).getBitmap();
}
int width = drawable.getIntrinsicWidth();
width = width > 0 ? width : 1;
int height = drawable.getIntrinsicHeight();
height = height > 0 ? height : 1;
Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
return bitmap;
}
そしてこれで完了します:
Notification.Builder builder = new Notification.Builder(context);
Drawable icon = getPackageManager().getApplicationIcon(
packageName);
Bitmap bitmapIcon = drawableToBitmap(icon);
builder.setIcon(android.R.drawable.stat_sys_download_done).//It´s necessary put a resource here. If you don´t put any resource, then the Notification Bar is not show.
setLargeIcon(bitmapIcon);
Notification notification = builder.getNotification();
notificationManager.notify(yourId, notification);