Android.Support.V4.App.NotificationCompat.Builder.SetContentInfo(string)

Here are the examples of the csharp api class Android.Support.V4.App.NotificationCompat.Builder.SetContentInfo(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: XamarinMediaManager
Source File: MediaNotificationManagerImplementation.cs
private void SetMetadata(IMediaFile mediaFile)
        {
            _builder.SetContentTitle(mediaFile?.Metadata?.Title ?? string.Empty);
            _builder.SetContentText(mediaFile?.Metadata?.Artist ?? string.Empty);
            _builder.SetContentInfo(mediaFile?.Metadata?.Album ?? string.Empty);
            _builder.SetLargeIcon(mediaFile?.Metadata?.Art as Bitmap);
        }

2. Example

Project: MALClient
Source File: NotificationCheckBroadcastReceiver.cs
private async void ScheduleToast(Context context, MalNotification notification)
        {
          /n ..... /n //View Source file for more details /n }