Searched defs:isChecked (Results 1 - 25 of 26) sorted by relevance

12

/packages/apps/Browser/src/com/android/browser/
H A DHistoryItem.java56 item.setIsBookmark(mStar.isChecked());
64 return mStar.isChecked();
79 boolean isChecked) {
80 if (isChecked) {
78 onCheckedChanged(CompoundButton buttonView, boolean isChecked) argument
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DCheckableImageView.java43 if (isChecked()) {
53 public boolean isChecked() { method in class:CheckableImageView
/packages/apps/Music/src/com/android/music/
H A DCheckableRelativeLayout.java43 if (isChecked()) {
53 public boolean isChecked() { method in class:CheckableRelativeLayout
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothEnabler.java103 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
105 if (isChecked &&
113 mLocalAdapter.setBluetoothEnabled(isChecked);
H A DBluetoothPairingDialog.java376 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
378 if (isChecked) {
/packages/apps/Email/src/com/android/email/activity/setup/
H A DDebugFragment.java109 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
112 mPreferences.setEnableDebugLogging(isChecked);
113 Email.DEBUG = isChecked;
114 Email.DEBUG_EXCHANGE = isChecked;
117 mPreferences.setEnableExchangeLogging(isChecked);
118 Email.DEBUG_EXCHANGE_VERBOSE = isChecked;
121 mPreferences.setEnableExchangeFileLogging(isChecked);
122 Email.DEBUG_EXCHANGE_FILE = isChecked;
125 Email.sDebugInhibitGraphicsAcceleration = isChecked;
126 mPreferences.setInhibitGraphicsAcceleration(isChecked);
[all...]
H A DAccountSetupExchangeFragment.java261 boolean useSsl = mSslSecurityView.isChecked();
353 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
355 onUseSslChanged(isChecked);
439 if (mSslSecurityView.isChecked()) {
442 if (mTrustCertificatesView.isChecked()) {
454 port = mSslSecurityView.isChecked() ? 443 : 80;
H A DAccountSetupOutgoingFragment.java294 if (enabled && mRequireLoginView.isChecked()) {
307 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
308 final int visibility = isChecked ? View.VISIBLE : View.GONE;
352 if (mRequireLoginView.isChecked()) {
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DCorpusView.java68 public boolean isChecked() { method in class:CorpusView
86 if (isChecked()) {
/packages/apps/Settings/src/com/android/settings/
H A DApnPreference.java80 boolean isChecked = getKey().equals(mSelectedKey);
81 if (isChecked) {
87 rb.setChecked(isChecked);
106 public boolean isChecked() { method in class:ApnPreference
114 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
115 Log.i(TAG, "ID: " + getKey() + " :" + isChecked);
120 if (isChecked) {
H A DDateTimeSettingsSetupWizard.java189 mAutoDateTimeButton.isChecked() ? 1 : 0);
190 if (!mAutoDateTimeButton.isChecked()) {
207 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
208 final boolean autoEnabled = isChecked; // just for readibility.
214 isChecked ? 1 : 0);
217 if (isChecked) {
225 isChecked ? 1 : 0);
H A DDreamSettings.java109 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
110 setScreenSaverEnabled(mContext, isChecked);
155 mActivateOnDockPreference.isChecked() ? 1 : 0);
H A DBrightnessPreference.java136 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
137 setMode(isChecked ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
266 myState.automatic = mCheckBox.isChecked();
H A DDevelopmentSettings.java364 if (cb.isChecked()) {
415 mDebugApp, mWaitForDebugger.isChecked(), true);
467 mWindowManager.setStrictModeVisualIndicatorPreference(mStrictMode.isChecked()
479 Settings.System.POINTER_LOCATION, mPointerLocation.isChecked() ? 1 : 0);
489 Settings.System.SHOW_TOUCHES, mShowTouches.isChecked() ? 1 : 0);
529 final int showUpdates = mShowScreenUpdates.isChecked() ? 1 : 0;
546 final int disableOverlays = mDisableOverlays.isChecked() ? 1 : 0;
562 SystemProperties.set(HARDWARE_UI_PROPERTY, mForceHardwareUi.isChecked() ? "true" : "false");
573 mTrackFrameTime.isChecked() ? "true" : "false");
584 mShowHwScreenUpdates.isChecked()
750 onCheckedChanged(CompoundButton buttonView, boolean isChecked) argument
[all...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DFileItemInfoLayout.java39 setChecked(!mCheckbox.isChecked());
62 public boolean isChecked() { method in class:FileItemInfoLayout
63 return mCheckbox.isChecked();
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiEnabler.java101 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
107 if (isChecked && !WirelessSettings.isRadioAllowed(mContext, Settings.System.RADIO_WIFI)) {
115 if (isChecked && ((wifiApState == WifiManager.WIFI_AP_STATE_ENABLING) ||
120 if (mWifiManager.setWifiEnabled(isChecked)) {
153 if (checked != mSwitch.isChecked()) {
167 if (state != null && mSwitch.isChecked()) {
/packages/apps/Mms/src/com/android/mms/ui/
H A DConversationListItem.java228 if (mConversation.isChecked()) {
252 public boolean isChecked() { method in class:ConversationListItem
253 return mConversation.isChecked();
257 mConversation.setIsChecked(!mConversation.isChecked());
/packages/apps/Settings/src/com/android/settings/tts/
H A DTtsEnginePreference.java85 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
86 onRadioButtonClicked(buttonView, isChecked);
115 boolean isChecked = getKey().equals(mSharedState.getCurrentKey());
116 if (isChecked) {
121 rb.setChecked(isChecked);
130 onRadioButtonClicked(rb, !rb.isChecked());
137 mSettingsIcon.setEnabled(isChecked && mVoiceCheckData != null);
159 mSettingsIcon.setEnabled(mRadioButton.isChecked());
171 mSettingsIcon.setEnabled(mRadioButton.isChecked());
175 private void onRadioButtonClicked(CompoundButton buttonView, boolean isChecked) { argument
[all...]
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
H A DDownloadItem.java119 public boolean isChecked() { method in class:DownloadItem
120 return mCheckBox.isChecked();
126 mDownloadList.onDownloadSelectionChanged(mDownloadId, mCheckBox.isChecked(),
128 mDownloadList.getCurrentView().setItemChecked(mPosition, mCheckBox.isChecked());
133 setChecked(!isChecked());
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DGroupMembershipView.java75 public boolean isChecked() { method in class:GroupMembershipView.GroupSelectionItem
325 listView.setItemChecked(i, mAdapter.getItem(i).isChecked());
374 if (item.isChecked() && !hasMembership(groupId)) {
388 return item.isChecked();
/packages/apps/Phone/src/com/android/phone/
H A DSipCallOptionHandler.java344 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
345 mMakePrimary = isChecked;
346 if (isChecked) {
/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DLongThreadTest.java211 public boolean isChecked() { method in class:LongThreadTest.AddSubjectMenuItem
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventView.java725 mModel.mAllDay = mAllDayCheckBox.isChecked();
1066 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
1067 setAllDayViewsVisibility(isChecked);
1071 boolean prevAllDay = mAllDayCheckBox.isChecked();
1085 if (prevAllDay == mAllDayCheckBox.isChecked()) {
1113 mAllDayCheckBox.setChecked(!mAllDayCheckBox.isChecked());
1399 setAllDayViewsVisibility(mAllDayCheckBox.isChecked());
1562 * @param isChecked
1564 protected void setAllDayViewsVisibility(boolean isChecked) { argument
1565 if (isChecked) {
[all...]
/packages/apps/Contacts/src/com/android/contacts/vcard/
H A DImportVCardActivity.java594 public void onClick(DialogInterface dialog, int which, boolean isChecked) { argument
595 if (mSelectedIndexSet == null || (mSelectedIndexSet.contains(which) == isChecked)) {
/packages/apps/Mms/src/com/android/mms/data/
H A DConversation.java550 public synchronized boolean isChecked() { method in class:Conversation
554 public synchronized void setIsChecked(boolean isChecked) { argument
555 mIsChecked = isChecked;

Completed in 4447 milliseconds

12