Package org.robolectric.shadows
Class ShadowSuspendDialogInfo
- java.lang.Object
-
- org.robolectric.shadows.ShadowSuspendDialogInfo
-
@Implements(value=android.content.pm.SuspendDialogInfo.class, isInAndroidSdk=false, minSdk=29) public class ShadowSuspendDialogInfo extends Object
Shadow ofSuspendDialogInfoto expose hidden methods.
-
-
Field Summary
Fields Modifier and Type Field Description protected SuspendDialogInforealInfo
-
Constructor Summary
Constructors Constructor Description ShadowSuspendDialogInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDialogMessage()Returns the text to be shown in the dialog's body, ornullifgetDialogMessageResId()returns a valid resource id.intgetDialogMessageResId()Returns the resource id of the text to be shown in the dialog's body.intgetIconResId()Returns the resource id of the icon to be used with the dialog.intgetNeutralButtonAction()Returns the action expected to happen on neutral button tap.intgetNeutralButtonTextResId()Returns the text to be shown.intgetTitleResId()Returns the resource id of the title to be used with the dialog.
-
-
-
Field Detail
-
realInfo
@RealObject protected SuspendDialogInfo realInfo
-
-
Method Detail
-
getIconResId
@Implementation @HiddenApi @DrawableRes public int getIconResId()
Returns the resource id of the icon to be used with the dialog.
-
getTitleResId
@Implementation @HiddenApi @StringRes public int getTitleResId()
Returns the resource id of the title to be used with the dialog.
-
getDialogMessageResId
@Implementation @HiddenApi @StringRes public int getDialogMessageResId()
Returns the resource id of the text to be shown in the dialog's body.
-
getDialogMessage
@Implementation @HiddenApi @Nullable public String getDialogMessage()
Returns the text to be shown in the dialog's body, ornullifgetDialogMessageResId()returns a valid resource id.
-
getNeutralButtonTextResId
@Implementation @HiddenApi @StringRes public int getNeutralButtonTextResId()
Returns the text to be shown.
-
getNeutralButtonAction
@Implementation(minSdk=30) public int getNeutralButtonAction()
Returns the action expected to happen on neutral button tap.- Returns:
SuspendDialogInfo.BUTTON_ACTION_MORE_DETAILSorSuspendDialogInfo.BUTTON_ACTION_UNSUSPEND
-
-