Home
last modified time | relevance | path

Searched refs:dialogView (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/v2/ui/fragments/
DInstallFailedFragment.java93 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
97 .setView(dialogView) in onCreateDialog()
102 setExplanationFromErrorCode(mDialogData.getStatusCode(), dialogView); in onCreateDialog() local
112 private void setExplanationFromErrorCode(int statusCode, View dialogView) { in setExplanationFromErrorCode() argument
118 viewToEnable = dialogView.requireViewById(R.id.install_failed_blocked); in setExplanationFromErrorCode()
121 viewToEnable = dialogView.requireViewById(R.id.install_failed_conflict); in setExplanationFromErrorCode()
124 viewToEnable = dialogView.requireViewById(R.id.install_failed_incompatible); in setExplanationFromErrorCode()
127 viewToEnable = dialogView.requireViewById(R.id.install_failed_invalid_apk); in setExplanationFromErrorCode()
130 viewToEnable = dialogView.requireViewById(R.id.install_failed); in setExplanationFromErrorCode()
DInstallStagingFragment.java41 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
42 dialogView.requireViewById(R.id.staging).setVisibility(View.VISIBLE); in onCreateDialog()
47 .setView(dialogView) in onCreateDialog()
DInstallInstallingFragment.java71 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
75 .setView(dialogView) in onCreateDialog()
79 dialogView.requireViewById(R.id.installing).setVisibility(View.VISIBLE); in onCreateDialog()
DUninstallConfirmationFragment.java102 View dialogView = getLayoutInflater().inflate(R.layout.uninstall_content_view, null); in onCreateDialog() local
104 ((TextView) dialogView.requireViewById(R.id.message)).setText(mDialogData.getMessage()); in onCreateDialog()
105 mKeepData = dialogView.requireViewById(R.id.keepData); in onCreateDialog()
110 builder.setView(dialogView); in onCreateDialog()
DInstallConfirmationFragment.java92 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
108 .setView(dialogView) in onCreateDialog()
119 viewToEnable = dialogView.requireViewById(R.id.install_confirm_question_update); in onCreateDialog()
126 viewToEnable = dialogView.requireViewById(R.id.install_confirm_question); in onCreateDialog()
DInstallSuccessFragment.java93 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
97 .setView(dialogView) in onCreateDialog()
104 dialogView.requireViewById(R.id.install_success).setVisibility(View.VISIBLE); in onCreateDialog()
/frameworks/base/packages/SystemUI/src/com/android/systemui/reardisplay/
DRearDisplayDialogController.java125 View dialogView = createDialogView(mRearDisplayEducationDialog.getContext()); in onConfigChanged() local
127 mDialogViewContainer.addView(dialogView); in onConfigChanged()
134 View dialogView = createDialogView(dialogContext); in createAndShowDialog() local
140 mDialogViewContainer.addView(dialogView); in createAndShowDialog()
150 View dialogView; in createDialogView() local
153 dialogView = inflater.inflate(R.layout.activity_rear_display_education, null); in createDialogView()
155 dialogView = inflater.inflate( in createDialogView()
158 LottieAnimationView animationView = dialogView.findViewById( in createDialogView()
161 return dialogView; in createDialogView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSSecurityFooterUtils.java452 final View dialogView = createDialogView(quickSettingsContext); in createDialog() local
460 mDialog.setView(dialogView); in createDialog()
498 View dialogView = LayoutInflater.from(quickSettingsContext) in createOrganizationDialogView() local
503 dialogView.findViewById(R.id.device_management_subtitle); in createOrganizationDialogView()
509 dialogView.findViewById(R.id.device_management_disclosures).setVisibility(View.GONE); in createOrganizationDialogView()
511 dialogView.findViewById(R.id.device_management_disclosures).setVisibility(View.VISIBLE); in createOrganizationDialogView()
513 (TextView) dialogView.findViewById(R.id.device_management_warning); in createOrganizationDialogView()
522 dialogView.findViewById(R.id.ca_certs_disclosures).setVisibility(View.GONE); in createOrganizationDialogView()
524 dialogView.findViewById(R.id.ca_certs_disclosures).setVisibility(View.VISIBLE); in createOrganizationDialogView()
525 TextView caCertsWarning = (TextView) dialogView.findViewById(R.id.ca_certs_warning); in createOrganizationDialogView()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/bluetooth/
DBroadcastDialogDelegate.java201 View dialogView = dialog.getLayoutInflater().inflate(R.layout.broadcast_dialog, null); in onCreate() local
203 window.setContentView(dialogView); in onCreate()
205 TextView title = dialogView.requireViewById(R.id.dialog_title); in onCreate()
206 TextView subTitle = dialogView.requireViewById(R.id.dialog_subtitle); in onCreate()
214 mSwitchBroadcast = dialogView.requireViewById(R.id.switch_broadcast); in onCreate()
215 Button changeOutput = dialogView.requireViewById(R.id.change_output); in onCreate()
216 Button cancelBtn = dialogView.requireViewById(R.id.cancel); in onCreate()
/frameworks/base/core/java/android/preference/
DSeekBarDialogPreference.java85 protected static SeekBar getSeekBar(View dialogView) { in getSeekBar() argument
86 return (SeekBar) dialogView.findViewById(R.id.seekbar); in getSeekBar()
DEditTextPreference.java150 protected void onAddEditTextToDialogView(View dialogView, EditText editText) { in onAddEditTextToDialogView() argument
151 ViewGroup container = (ViewGroup) dialogView in onAddEditTextToDialogView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumePanelDialog.java98 View dialogView = LayoutInflater.from(getContext()).inflate(R.layout.volume_panel_dialog, in onCreate() local
101 window.setContentView(dialogView); in onCreate()
103 Button doneButton = dialogView.findViewById(R.id.done_button); in onCreate()
105 Button settingsButton = dialogView.findViewById(R.id.settings_button); in onCreate()
120 mVolumePanelSlices = dialogView.findViewById(R.id.volume_panel_parent_layout); in onCreate()