0

I'm using RemoteViews in Android Studio with a custom notification. The only thing is that I'm having issues with it now showing the small icon and the App Name.

Thanks hope I have made some sense?

Intent notificationIntent = new Intent(mContext, CardDemoActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);

PendingIntent pendingIntent = PendingIntent.getActivity(mContext,0,notificationIntent,0);
RemoteViews remoteView = new RemoteViews(mContext.getPackageName(), R.layout.notifcation_player);
remoteView.setImageViewResource(R.id.notif_appIcon, R.drawable.app_logo);
remoteView.setTextViewText(R.id.notif_playing, title);
remoteView.setTextViewText(R.id.notif_preacher, preacher);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mContext);
mBuilder.setSmallIcon(R.drawable.app_logo);
mBuilder.setContent(remoteView);
mBuilder.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(mContext.NOTIFICATION_SERVICE);
notificationManager.notify(1, mBuilder.build());
Daniel Schneller
  • 13,728
  • 5
  • 43
  • 72

1 Answers1

0

Use -:

mBuilder.setContentTitle("Your tilte");  //title for your project
mBuildersetContentText("Your message);//message you want to show
Shivam Oberoi
  • 1,447
  • 1
  • 9
  • 18