Searched refs:checkBox (Results 1 – 10 of 10) sorted by relevance
74 CheckBox checkBox = (CheckBox) vCheckBox; in getView() local75 checkBox.setChecked(mSettings.isAlbumEnabled(data.id)); in getView()76 checkBox.setTag(R.id.data_payload, data); in getView()156 final CheckBox checkBox = (CheckBox) vCheckBox; in onClick() local158 (PhotoSource.AlbumData) checkBox.getTag(R.id.data_payload); in onClick()159 final boolean isChecked = !checkBox.isChecked(); in onClick()160 checkBox.setChecked(isChecked); in onClick()
73 View checkBox = view.findViewById(android.R.id.checkbox); in onBindView() local75 checkBox.setVisibility(View.GONE); in onBindView()85 checkBox.setVisibility(View.VISIBLE); in onBindView()
140 CheckBoxPreference checkBox = (CheckBoxPreference)preference; in onPreferenceTreeClick() local141 if (!checkBox.isChecked()) { in onPreferenceTreeClick()142 checkBox.setChecked(true); in onPreferenceTreeClick()
75 public WifiApEnabler(Context context, CheckBoxPreference checkBox) { in WifiApEnabler() argument77 mCheckBox = checkBox; in WifiApEnabler()78 mOriginalSummary = checkBox.getSummary(); in WifiApEnabler()79 checkBox.setPersistent(false); in WifiApEnabler()
21 public CheckBox checkBox; field in AppViewHolder35 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard); in createOrRecycle()
784 holder.checkBox.setVisibility(View.VISIBLE); in getView()785 holder.checkBox.setChecked((entry.info.flags in getView()788 holder.checkBox.setVisibility(View.GONE); in getView()
863 Drawable checkBox = mMultiSelected.contains(image)866 int width = checkBox.getIntrinsicWidth();867 int height = checkBox.getIntrinsicHeight();871 checkBox.setBounds(mSrcRect);872 checkBox.draw(canvas);
130 holder.checkBox.setVisibility(View.GONE); in getView()
395 void updateCheckBox(CheckBoxPreference checkBox, boolean value) { in updateCheckBox() argument396 checkBox.setChecked(value); in updateCheckBox()
259 final CheckBox checkBox = (CheckBox)alertDialog.findViewById(R.id.setPrimary); in onClick() local260 if (checkBox.isChecked()) { in onClick()