Home
last modified time | relevance | path

Searched refs:negativeButtonTextResId (Results 1 – 3 of 3) sorted by relevance

/frameworks/support/v7/preference/src/android/support/v7/preference/
DDialogPreference.java225 public void setNegativeButtonText(int negativeButtonTextResId) { in setNegativeButtonText() argument
226 setNegativeButtonText(getContext().getString(negativeButtonTextResId)); in setNegativeButtonText()
/frameworks/base/core/java/android/preference/
DDialogPreference.java228 public void setNegativeButtonText(@StringRes int negativeButtonTextResId) { in setNegativeButtonText() argument
229 setNegativeButtonText(getContext().getString(negativeButtonTextResId)); in setNegativeButtonText()
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
DAlertDialogTest.java1067 @StringRes int negativeButtonTextResId, in verifyDialogButtons() argument
1083 if (negativeButtonTextResId != 0) { in verifyDialogButtons()
1084 negativeButtonText = context.getString(negativeButtonTextResId); in verifyDialogButtons()
1085 builder.setNegativeButton(negativeButtonTextResId, mockClickListener); in verifyDialogButtons()