-
- All Implemented Interfaces:
-
java.lang.annotation.Annotation
@Deprecated()@Documented()@Retention(value = RetentionPolicy.RUNTIME)@Target(value = ElementType.TYPE)@Inherited() public @interface AcraNotification
-
-
Method Summary
Modifier and Type Method Description abstract intresIcon()icon of the notification abstract intresTitle()title of the notification abstract intresText()text in the notification abstract intresTickerText()ticker text for the notification abstract intresSendButtonText()send button text shown in expanded view abstract intresSendButtonIcon()send button icon shown in collapsed and sometimes expanded view abstract intresDiscardButtonText()discard button text shown in expanded view abstract intresDiscardButtonIcon()discard button icon shown in collapsed and sometimes expanded view abstract intresChannelName()notification channel name. abstract intresChannelDescription()notification channel description abstract intresChannelImportance()notification channel importance. abstract intresSendWithCommentButtonText()in-line comment button text. abstract intresSendWithCommentButtonIcon()in-line comment button icon. abstract intresCommentPrompt()in-line comment prompt label. abstract booleansendOnClick()enable to send report even on normal click, not only on button click -
-
Method Detail
-
resIcon
@DrawableRes() abstract int resIcon()
icon of the notification
-
resTickerText
@StringRes() abstract int resTickerText()
ticker text for the notification
-
resSendButtonText
@StringRes() abstract int resSendButtonText()
send button text shown in expanded view
-
resSendButtonIcon
@DrawableRes() abstract int resSendButtonIcon()
send button icon shown in collapsed and sometimes expanded view
-
resDiscardButtonText
@StringRes() abstract int resDiscardButtonText()
discard button text shown in expanded view
-
resDiscardButtonIcon
@DrawableRes() abstract int resDiscardButtonIcon()
discard button icon shown in collapsed and sometimes expanded view
-
resChannelName
@StringRes() abstract int resChannelName()
notification channel name. To learn about notification channels, visit the notification guide
-
resChannelDescription
@StringRes() abstract int resChannelDescription()
notification channel description
-
resChannelImportance
abstract int resChannelImportance()
notification channel importance. Must be one of
-
resSendWithCommentButtonText
@StringRes() abstract int resSendWithCommentButtonText()
in-line comment button text. No effect on pre-nougat devices.
-
resSendWithCommentButtonIcon
@DrawableRes() abstract int resSendWithCommentButtonIcon()
in-line comment button icon. No effect on pre-nougat devices.
-
resCommentPrompt
@StringRes() abstract int resCommentPrompt()
in-line comment prompt label. No effect on pre-nougat devices.
-
sendOnClick
abstract boolean sendOnClick()
enable to send report even on normal click, not only on button click
-
-
-
-