Home
last modified time | relevance | path

Searched refs:textId (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DEmergencyButton.java220 int textId; in updateEmergencyCallButton() local
222 textId = com.android.internal.R.string.lockscreen_return_to_call; in updateEmergencyCallButton()
224 textId = com.android.internal.R.string.lockscreen_emergency_call; in updateEmergencyCallButton()
226 setText(textId); in updateEmergencyCallButton()
/frameworks/base/core/java/android/app/
DAlertDialog.java626 public Builder setPositiveButton(@StringRes int textId, final OnClickListener listener) { in setPositiveButton() argument
627 P.mPositiveButtonText = P.mContext.getText(textId); in setPositiveButton()
652 public Builder setNegativeButton(@StringRes int textId, final OnClickListener listener) { in setNegativeButton() argument
653 P.mNegativeButtonText = P.mContext.getText(textId); in setNegativeButton()
678 public Builder setNeutralButton(@StringRes int textId, final OnClickListener listener) { in setNeutralButton() argument
679 P.mNeutralButtonText = P.mContext.getText(textId); in setNeutralButton()
DNotification.java4703 int textId = showProgress ? com.android.internal.R.id.text_line_1 in applyStandardTemplate() local
4705 contentView.setTextViewText(textId, processTextSpans(p.text)); in applyStandardTemplate()
4706 setTextViewColorSecondary(contentView, textId, p); in applyStandardTemplate()
4707 contentView.setViewVisibility(textId, View.VISIBLE); in applyStandardTemplate()
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
DTrackerActivity.java136 private void showConfirm(int textId, final Runnable onConfirmAction) { in showConfirm() argument
139 dialogBuilder.setMessage(textId); in showConfirm()
/frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
DCarrierActionUtils.java210 private static Notification getNotification(Context context, int titleId, int textId, in getNotification() argument
226 .setContentText(String.format(resources.getString(textId), spn)) in getNotification()