Searched refs:checkBox (Results 1 - 12 of 12) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DTwoStatePreferenceHelper.java65 static void addSwitchPreferenceBasedOnCheckBoxPreference(final CheckBoxPreference checkBox, argument
67 final SwitchPreference switchPref = new SwitchPreference(checkBox.getContext());
68 switchPref.setTitle(checkBox.getTitle());
69 switchPref.setKey(checkBox.getKey());
70 switchPref.setOrder(checkBox.getOrder());
71 switchPref.setPersistent(checkBox.isPersistent());
72 switchPref.setEnabled(checkBox.isEnabled());
73 switchPref.setChecked(checkBox.isChecked());
74 switchPref.setSummary(checkBox.getSummary());
75 switchPref.setSummaryOn(checkBox
[all...]
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModeDowntimeDaysSelection.java61 final CheckBox checkBox = (CheckBox) inflater.inflate(R.layout.zen_downtime_day,
64 checkBox.setText(DAY_FORMAT.format(c.getTime()));
65 checkBox.setChecked(mDays.get(day));
66 checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
73 mLayout.addView(checkBox);
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DAlbumDataAdapter.java91 CheckBox checkBox = (CheckBox) vCheckBox;
92 checkBox.setChecked(isSelected(position));
93 checkBox.setTag(R.id.data_payload, data);
173 final CheckBox checkBox = (CheckBox) vCheckBox;
175 (PhotoSource.AlbumData) checkBox.getTag(R.id.data_payload);
176 final boolean isChecked = !checkBox.isChecked();
177 checkBox.setChecked(isChecked);
/packages/apps/Settings/src/com/android/settings/accounts/
H A DSyncStateCheckBoxPreference.java73 View checkBox = view.findViewById(android.R.id.checkbox);
75 checkBox.setVisibility(View.GONE);
85 checkBox.setVisibility(View.VISIBLE);
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppViewHolder.java21 public CheckBox checkBox; field in class:AppViewHolder
35 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard);
H A DManageApplications.java827 holder.checkBox.setVisibility(View.VISIBLE);
828 holder.checkBox.setChecked((entry.info.flags
831 holder.checkBox.setVisibility(View.GONE);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DHierarchicalFolderSelectorAdapter.java59 final CompoundButton checkBox = (CompoundButton) view.findViewById(R.id.checkbox);
63 if (checkBox != null) {
64 checkBox.setText(TextUtils.isEmpty(row.mPathName) ? folder.name
H A DFolderSelectorAdapter.java321 final CompoundButton checkBox = (CompoundButton) view.findViewById(R.id.checkbox);
322 if (checkBox != null) {
325 checkBox.setClickable(false);
326 checkBox.setText(folderDisplay);
327 checkBox.setChecked(row.isSelected());
/packages/apps/Settings/src/com/android/settings/
H A DAppPicker.java130 holder.checkBox.setVisibility(View.GONE);
H A DDevelopmentSettings.java485 void updateCheckBox(CheckBoxPreference checkBox, boolean value) { argument
486 checkBox.setChecked(value);
/packages/apps/Gallery/src/com/android/camera/
H A DImageGallery.java858 Drawable checkBox = mMultiSelected.contains(image)
861 int width = checkBox.getIntrinsicWidth();
862 int height = checkBox.getIntrinsicHeight();
866 checkBox.setBounds(mSrcRect);
867 checkBox.draw(canvas);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java235 final CheckBox checkBox = (CheckBox)alertDialog.findViewById(R.id.setPrimary);
236 if (checkBox.isChecked()) {

Completed in 291 milliseconds