Home
last modified time | relevance | path

Searched refs:strId (Results 1 – 6 of 6) sorted by relevance

/packages/apps/TvSystemUI/src/com/android/systemui/tv/usb/
DTvUsbConfirmActivity.java31 final int strId; in onResume() local
35 strId = useRecordWarning in onResume()
40 strId = R.string.usb_accessory_confirm_prompt; in onResume()
42 CharSequence text = getString(strId, mDialogHelper.getAppName(), in onResume()
DTvUsbPermissionActivity.java32 final int strId; in onResume() local
36 strId = useRecordWarning in onResume()
41 strId = R.string.usb_accessory_permission_prompt; in onResume()
43 CharSequence text = getString(strId, mDialogHelper.getAppName(), in onResume()
/packages/services/Telephony/src/com/android/phone/settings/fdn/
DFdnSetting.java369 private void displayMessage(int strId, int attemptsRemaining) { in displayMessage() argument
370 String s = getString(strId); in displayMessage()
371 if ((strId == R.string.badPin2) || (strId == R.string.badPuk2) || in displayMessage()
372 (strId == R.string.pin2_invalid)) { in displayMessage()
374 s = getString(strId) + getString(R.string.pin2_attempts, attemptsRemaining); in displayMessage()
376 s = getString(strId); in displayMessage()
383 private void displayMessage(int strId) { in displayMessage() argument
384 displayMessage(strId, -1); in displayMessage()
395 int strId, boolean shouldDisplay) { in displayPinChangeDialog() argument
420 if (strId != 0) { in displayPinChangeDialog()
[all …]
/packages/services/Telephony/src/com/android/phone/
DGsmUmtsCallBarringOptions.java129 private void displayMessage(int strId) { in displayMessage() argument
130 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show(); in displayMessage()
292 private void displayPwChangeDialog(int strId, boolean shouldDisplay) { in displayPwChangeDialog() argument
309 if (strId != 0) { in displayPwChangeDialog()
310 mButtonChangePW.setDialogMessage(getText(msgId) + "\n" + getText(strId)); in displayPwChangeDialog()
319 mPwChangeDialogStrId = strId; in displayPwChangeDialog()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
DEditor.java292 protected void createMenu(int[] strId, View button) { in createMenu() argument
295 for (int i = 0; i < strId.length; i++) { in createMenu()
296 menu.add(Menu.NONE, Menu.FIRST + i, 0, mContext.getString(strId[i])); in createMenu()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java2239 int strId = mLauncher.isHotseatLayout(dropTargetLayout)
2241 Toast.makeText(mLauncher, mLauncher.getString(strId), Toast.LENGTH_SHORT).show();