Searched refs:textId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DAlertDialog.java354 * @param textId The resource id of the text to display in the positive button
359 public Builder setPositiveButton(int textId, final OnClickListener listener) { argument
360 P.mPositiveButtonText = P.mContext.getText(textId);
380 * @param textId The resource id of the text to display in the negative button
385 public Builder setNegativeButton(int textId, final OnClickListener listener) { argument
386 P.mNegativeButtonText = P.mContext.getText(textId);
406 * @param textId The resource id of the text to display in the neutral button
411 public Builder setNeutralButton(int textId, final OnClickListener listener) { argument
412 P.mNeutralButtonText = P.mContext.getText(textId);
H A DSearchDialog.java499 int textId = mSearchable.getSearchButtonText();
503 } else if (textId != 0) {
504 textLabel = mActivityContext.getResources().getString(textId);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java671 int textId;
674 textId = R.string.lockscreen_return_to_call;
678 textId = R.string.lockscreen_emergency_call;
682 button.setText(textId);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerActivity.java135 private void showConfirm(int textId, final Runnable onConfirmAction) { argument
138 dialogBuilder.setMessage(textId);

Completed in 8419 milliseconds