Searched refs:negativeButtonTextResId (Results 1 – 3 of 3) sorted by relevance
225 public void setNegativeButtonText(int negativeButtonTextResId) { in setNegativeButtonText() argument226 setNegativeButtonText(getContext().getString(negativeButtonTextResId)); in setNegativeButtonText()
228 public void setNegativeButtonText(@StringRes int negativeButtonTextResId) { in setNegativeButtonText() argument229 setNegativeButtonText(getContext().getString(negativeButtonTextResId)); in setNegativeButtonText()
1067 @StringRes int negativeButtonTextResId, in verifyDialogButtons() argument1083 if (negativeButtonTextResId != 0) { in verifyDialogButtons()1084 negativeButtonText = context.getString(negativeButtonTextResId); in verifyDialogButtons()1085 builder.setNegativeButton(negativeButtonTextResId, mockClickListener); in verifyDialogButtons()