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.java59 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
63 .setView(dialogView) in onCreateDialog()
68 setExplanationFromErrorCode(mDialogData.getStatusCode(), dialogView); in onCreateDialog() local
78 private void setExplanationFromErrorCode(int statusCode, View dialogView) { in setExplanationFromErrorCode() argument
84 viewToEnable = dialogView.requireViewById(R.id.install_failed_blocked); in setExplanationFromErrorCode()
87 viewToEnable = dialogView.requireViewById(R.id.install_failed_conflict); in setExplanationFromErrorCode()
90 viewToEnable = dialogView.requireViewById(R.id.install_failed_incompatible); in setExplanationFromErrorCode()
93 viewToEnable = dialogView.requireViewById(R.id.install_failed_invalid_apk); in setExplanationFromErrorCode()
96 viewToEnable = dialogView.requireViewById(R.id.install_failed); in setExplanationFromErrorCode()
DUninstallConfirmationFragment.java73 View dialogView = getLayoutInflater().inflate(R.layout.uninstall_content_view, null); in onCreateDialog() local
75 ((TextView) dialogView.requireViewById(R.id.message)).setText(mDialogData.getMessage()); in onCreateDialog()
76 mKeepData = dialogView.requireViewById(R.id.keepData); in onCreateDialog()
81 builder.setView(dialogView); in onCreateDialog()
DInstallInstallingFragment.java48 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
52 .setView(dialogView) in onCreateDialog()
56 dialogView.requireViewById(R.id.installing).setVisibility(View.VISIBLE); in onCreateDialog()
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()
DInstallConfirmationFragment.java63 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
79 .setView(dialogView) in onCreateDialog()
90 viewToEnable = dialogView.requireViewById(R.id.install_confirm_question_update); in onCreateDialog()
96 viewToEnable = dialogView.requireViewById(R.id.install_confirm_question); in onCreateDialog()
DInstallSuccessFragment.java64 View dialogView = getLayoutInflater().inflate(R.layout.install_content_view, null); in onCreateDialog() local
68 .setView(dialogView) in onCreateDialog()
75 dialogView.requireViewById(R.id.install_success).setVisibility(View.VISIBLE); in onCreateDialog()
/frameworks/base/packages/SystemUI/src/com/android/systemui/reardisplay/
DRearDisplayDialogController.java117 View dialogView = createDialogView(mRearDisplayEducationDialog.getContext()); in onConfigChanged() local
119 mDialogViewContainer.addView(dialogView); in onConfigChanged()
126 View dialogView = createDialogView(dialogContext); in createAndShowDialog() local
132 mDialogViewContainer.addView(dialogView); in createAndShowDialog()
142 View dialogView; in createDialogView() local
145 dialogView = inflater.inflate(R.layout.activity_rear_display_education, null); in createDialogView()
147 dialogView = inflater.inflate( in createDialogView()
150 LottieAnimationView animationView = dialogView.findViewById( in createDialogView()
153 return dialogView; in createDialogView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSSecurityFooterUtils.java450 final View dialogView = createDialogView(quickSettingsContext); in createDialog() local
458 mDialog.setView(dialogView); in createDialog()
496 View dialogView = LayoutInflater.from(quickSettingsContext) in createOrganizationDialogView() local
501 dialogView.findViewById(R.id.device_management_subtitle); in createOrganizationDialogView()
507 dialogView.findViewById(R.id.device_management_disclosures).setVisibility(View.GONE); in createOrganizationDialogView()
509 dialogView.findViewById(R.id.device_management_disclosures).setVisibility(View.VISIBLE); in createOrganizationDialogView()
511 (TextView) dialogView.findViewById(R.id.device_management_warning); in createOrganizationDialogView()
520 dialogView.findViewById(R.id.ca_certs_disclosures).setVisibility(View.GONE); in createOrganizationDialogView()
522 dialogView.findViewById(R.id.ca_certs_disclosures).setVisibility(View.VISIBLE); in createOrganizationDialogView()
523 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()