Struct BigPictureStyle
Data for setting up the big picture style notification. Properties that are not available in devices API level are ignored. See Android documentation for availibility. https://developer.android.com/reference/android/app/Notification.BigPictureStyle
Inherited Members
Namespace: Unity.Notifications.Android
Assembly: solution.dll
Syntax
public struct BigPictureStyle
Properties
ContentDescription
The content description to set.
Declaration
public string ContentDescription { get; set; }
Property Value
Type | Description |
---|---|
string |
ContentTitle
The content title to be displayed in the notification.
Declaration
public string ContentTitle { get; set; }
Property Value
Type | Description |
---|---|
string |
LargeIcon
The override for large icon (requirements are the same).
Declaration
public string LargeIcon { get; set; }
Property Value
Type | Description |
---|---|
string |
Picture
The picture to be displayed. Can be resource name (like icon), file path or an URI supported by Android.
Declaration
public string Picture { get; set; }
Property Value
Type | Description |
---|---|
string |
ShowWhenCollapsed
Whether to show big picture in place of large icon when collapsed.
Declaration
public bool ShowWhenCollapsed { get; set; }
Property Value
Type | Description |
---|---|
bool |
SummaryText
The summary text to be shown.
Declaration
public string SummaryText { get; set; }
Property Value
Type | Description |
---|---|
string |