2
我試圖在通知欄中顯示圖像。但是,當我設置JPG格式的圖像我的應用程序關閉與Android停止進程。當我設置一個PNG圖標時,圖標不顯示在那裏。我調整我的兩種圖標類型32dp,並嘗試24dp大小。繼承人我的代碼和截圖 -Android通知不顯示標題圖像JPG或PNG格式
public void shownotification(View view){
Intent intent = new Intent();
PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this,0,intent,0);
Notification notification = new Notification.Builder(MainActivity.this)
.setTicker("Tittle")
.setContentTitle("Content Tittle")
.setContentText("All details of Content")
.setSmallIcon(R.drawable.cdc)
.setContentIntent(pendingIntent).getNotification();
notification.flags = Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0,notification);
}
你用什麼android版本? – USKMobility
API 22,棒棒糖版本。 – Istiyak
@Istiyak你有沒有得到任何解決方案? – Pallavi