Home
last modified time | relevance | path

Searched refs:mAlertBuilder (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppTransferActivity.java215 mAlertBuilder.setTitle(getString(R.string.download_title)); in setUpDialog()
217 mAlertBuilder.setPositiveButton(R.string.download_ok, this); in setUpDialog()
218 mAlertBuilder.setNegativeButton(R.string.download_cancel, this); in setUpDialog()
220 mAlertBuilder.setPositiveButton(R.string.download_succ_ok, this); in setUpDialog()
222 mAlertBuilder.setIconAttribute(android.R.attr.alertDialogIcon); in setUpDialog()
223 mAlertBuilder.setPositiveButton(R.string.download_fail_ok, this); in setUpDialog()
225 mAlertBuilder.setPositiveButton(R.string.upload_succ_ok, this); in setUpDialog()
227 mAlertBuilder.setIconAttribute(android.R.attr.alertDialogIcon); in setUpDialog()
228 mAlertBuilder.setNegativeButton(R.string.upload_fail_cancel, this); in setUpDialog()
230 mAlertBuilder.setView(createView()); in setUpDialog()
DBluetoothOppBtEnableActivity.java60 mAlertBuilder.setIconAttribute(android.R.attr.alertDialogIcon); in onCreate()
61 mAlertBuilder.setTitle(getString(R.string.bt_enable_title)); in onCreate()
62 mAlertBuilder.setView(createView()); in onCreate()
63 mAlertBuilder.setPositiveButton(R.string.bt_enable_ok, this); in onCreate()
64 mAlertBuilder.setNegativeButton(R.string.bt_enable_cancel, this); in onCreate()
DBluetoothOppBtErrorActivity.java59 mAlertBuilder.setIconAttribute(android.R.attr.alertDialogIcon); in onCreate()
60 mAlertBuilder.setTitle(errorTitle); in onCreate()
61 mAlertBuilder.setView(createView(errorContent)); in onCreate()
62 mAlertBuilder.setPositiveButton(R.string.bt_error_btn_ok, this); in onCreate()
DBluetoothOppIncomingFileConfirmActivity.java108 mAlertBuilder.setTitle(getString(R.string.incoming_file_confirm_content)); in onCreate()
109 mAlertBuilder.setView(createView()); in onCreate()
110 mAlertBuilder.setPositiveButton(R.string.incoming_file_confirm_ok, this); in onCreate()
111 mAlertBuilder.setNegativeButton(R.string.incoming_file_confirm_cancel, this); in onCreate()
DBluetoothOppBtEnablingActivity.java82 mAlertBuilder.setTitle(R.string.enabling_progress_title); in onCreate()
83 mAlertBuilder.setView(createView()); in onCreate()
/packages/apps/Bluetooth/src/com/android/bluetooth/
DAlertActivity.java41 protected AlertDialog.Builder mAlertBuilder; field in AlertActivity
50 mAlertBuilder = new AlertDialog.Builder(this); in onCreate()
51 mAlertBuilder.setOnDismissListener(this); in onCreate()
52 mAlertBuilder.setOnCancelListener(this); in onCreate()
88 mAlert = mAlertBuilder.create(); in setupAlert()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapActivity.java123 mAlertBuilder.setTitle(getString(R.string.pbap_session_key_dialog_header)); in showPbapDialog()
124 mAlertBuilder.setView(createView(DIALOG_YES_NO_AUTH)); in showPbapDialog()
125 mAlertBuilder.setPositiveButton(android.R.string.ok, this); in showPbapDialog()
126 mAlertBuilder.setNegativeButton(android.R.string.cancel, this); in showPbapDialog()