Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothEnabler.java53 public BluetoothEnabler(Context context, CheckBoxPreference checkBox) { in BluetoothEnabler() argument
55 mCheckBox = checkBox; in BluetoothEnabler()
56 mOriginalSummary = checkBox.getSummary(); in BluetoothEnabler()
57 checkBox.setPersistent(false); in BluetoothEnabler()
62 checkBox.setEnabled(false); in BluetoothEnabler()
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiEnabler.java60 public WifiEnabler(Context context, CheckBoxPreference checkBox) { in WifiEnabler() argument
62 mCheckBox = checkBox; in WifiEnabler()
63 mOriginalSummary = checkBox.getSummary(); in WifiEnabler()
64 checkBox.setPersistent(false); in WifiEnabler()
DWifiApEnabler.java74 public WifiApEnabler(Context context, CheckBoxPreference checkBox) { in WifiApEnabler() argument
76 mCheckBox = checkBox; in WifiApEnabler()
77 mOriginalSummary = checkBox.getSummary(); in WifiApEnabler()
78 checkBox.setPersistent(false); in WifiApEnabler()
/packages/apps/AccountsAndSyncSettings/src/com/android/settings/
DSyncStateCheckBoxPreference.java91 View checkBox = view.findViewById(android.R.id.checkbox); in onBindView() local
93 checkBox.setVisibility(View.GONE); in onBindView()
103 checkBox.setVisibility(View.VISIBLE); in onBindView()
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DDownloadAdapter.java115 CheckBox checkBox = (CheckBox) convertView.findViewById(R.id.download_checkbox); in bindView() local
116 checkBox.setChecked(mDownloadSelectionListener.isDownloadSelected(downloadId)); in bindView()
/packages/apps/Settings/src/com/android/settings/applications/
DManageApplications.java192 CheckBox checkBox; field in ManageApplications.AppViewHolder
442 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard); in getView()
471 holder.checkBox.setVisibility(View.VISIBLE); in getView()
472 holder.checkBox.setChecked((entry.info.flags in getView()
475 holder.checkBox.setVisibility(View.GONE); in getView()
/packages/apps/Gallery/src/com/android/camera/
DImageGallery.java863 Drawable checkBox = mMultiSelected.contains(image)
866 int width = checkBox.getIntrinsicWidth();
867 int height = checkBox.getIntrinsicHeight();
871 checkBox.setBounds(mSrcRect);
872 checkBox.draw(canvas);