HomeSort by relevance Sort by last modified time
    Searched defs:checkbox (Results 1 - 25 of 70) sorted by null

1 2 3

  /packages/apps/Car/libs/car-list/src/com/android/car/list/
PasswordLineItem.java 23 import android.widget.CheckBox;
29 * as password input followed by a checkbox to toggle between show/hide password.
48 * a show password checkbox.
51 public final CheckBox checkbox; field in class:PasswordLineItem.ViewHolder
55 checkbox = view.findViewById(R.id.checkbox);
66 viewHolder.checkbox.setChecked(mShowPassword);
67 viewHolder.checkbox.setOnCheckedChangeListener((buttonView, isChecked) -> {
77 throw new IllegalArgumentException("checkbox will automatically set TextType.")
    [all...]
CheckBoxLineItem.java 23 import android.widget.CheckBox;
29 * Contains logic for a line item represents title text and a checkbox.
38 * @param title The title text displayed with the checkbox
54 viewHolder.checkbox.setChecked(isChecked());
59 * and checkbox
63 public final CheckBox checkbox; field in class:CheckBoxLineItem.CheckboxLineItemViewHolder
73 checkbox = view.findViewById(R.id.checkbox);
90 * @return whether the CheckBox is checke
    [all...]
  /packages/experimental/SlicesApp/src/com/android/experimental/slicesapp/
SlicesActivity.java 29 import android.widget.CheckBox;
110 CheckBox checkbox = findViewById(id); local
111 checkbox.setChecked(state.getBoolean(key, false));
112 checkbox.setOnCheckedChangeListener((v, isChecked) -> {
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanelDisplay.java 18 CheckBoxImpl checkbox = new CheckBoxImpl(); local
22 table.setWidget(row, col, checkbox);
24 return checkbox;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
EditorsPage.java 75 // Add a listener which fires whenever the checkbox for the custom formatter
82 Button checkbox = editor.getChangeControl(parent); local
83 checkbox.addSelectionListener(new SelectionAdapter() {
148 * Overridden solely so that I can get access to the checkbox button to listen to
  /development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
BitmapAllocation.java 24 import android.widget.CheckBox;
55 final CheckBox checkbox = (CheckBox) findViewById(R.id.checkbox); local
78 if (checkbox.isChecked()) {
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 28 import android.widget.CheckBox;
93 CheckBox checkbox = (CheckBox) convertView.findViewById(R.id.tasklist_finished); local
94 checkbox.setChecked(mCheckboxes[position]);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
GalleryGridItemView.java 32 /** Shows an item in the gallery picker grid view. Hosts an FileImageView with a checkbox. */
38 private View checkbox; field in class:GalleryGridItemView
51 checkbox = findViewById(R.id.checkbox);
55 checkbox.setClipToOutline(true);
73 checkbox.setVisibility(VISIBLE);
77 checkbox.setVisibility(GONE);
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationLockscreenPreference.java 34 import android.widget.CheckBox;
91 CheckBox checkbox = (CheckBox) dialog.findViewById(R.id.lockscreen_remote_input); local
92 checkbox.setChecked(!mAllowRemoteInput);
93 checkbox.setOnCheckedChangeListener(mListener);
94 checkbox.setEnabled(mAdminRestrictingRemoteInput == null);
100 checkbox.setClickable(false);
  /external/adhd/scripts/mic_testing/frontend/
analysis.js 135 var checkbox = document.createElement('input');
136 checkbox.setAttribute('type', 'checkbox');
137 checkbox.checked = true;
138 checkbox.onclick = function() {
139 setCurveVisible(checkbox, curve_id, 'all');
141 tdCheckbox.appendChild(checkbox);
145 checkLeft.setAttribute('type', 'checkbox');
155 checkRight.setAttribute('type', 'checkbox');
177 this.setVisible = function(checkbox, id, channel)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
ScopedDirectoryAccessClientTest.java 236 UiObject checkbox = dialog.assertDoNotAskAgainVisibility(true); local
237 assertTrue("checkbox should not be checkable", checkbox.isCheckable());
238 assertFalse("checkbox should not be checked", checkbox.isChecked());
239 checkbox.click();
240 assertTrue("checkbox should be checked", checkbox.isChecked()); // Sanity check
491 UiObject checkbox = null; local
493 checkbox = getDoNotAskAgainCheckBox()
    [all...]
  /external/python/cpython2/Lib/msilib/
__init__.py 478 def checkbox(self, name, x, y, w, h, attr, prop, text, next): member in class:Dialog
479 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
  /external/python/cpython3/Lib/msilib/
__init__.py 482 def checkbox(self, name, x, y, w, h, attr, prop, text, next): member in class:Dialog
483 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbDebuggingActivity.java 39 import android.widget.CheckBox;
50 private CheckBox mAlwaysAllow;
83 // add "always allow" checkbox
85 View checkbox = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null); local
86 mAlwaysAllow = (CheckBox)checkbox.findViewById(com.android.internal.R.id.alwaysUse);
88 ap.mView = checkbox;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiNoInternetDialog.java 34 import android.widget.CheckBox;
52 private CheckBox mAlwaysAllow;
144 final View checkbox = inflater.inflate( local
146 ap.mView = checkbox;
147 mAlwaysAllow = (CheckBox) checkbox.findViewById(com.android.internal.R.id.alwaysUse);
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
CollapsibleCheckboxPreferenceGroup.java 41 * also has a checkbox.
65 View checkbox = holder.findViewById(com.android.internal.R.id.checkbox); local
67 // Ensures that the color of the text is consistent with the checkbox having a tick or not
69 if (checkbox != null && checkbox instanceof Checkable) {
70 ((Checkable) checkbox).setChecked(mChecked);
73 View parent = (View) checkbox.getParent();
103 // The checkbox view click handler.
109 // We need to find the CheckBox in the parent view that we are using as a touch target
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
msilib.py 661 def checkbox(self, name, x, y, w, h, attr, prop, text, next): member in class:Dialog
662 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
  /external/python/cpython2/Tools/msi/
msilib.py 656 def checkbox(self, name, x, y, w, h, attr, prop, text, next): member in class:Dialog
657 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 201 Switch checkbox; field in class:DeviceAdminSettings.ViewHolder
289 h.checkbox = v.findViewById(R.id.checkbox);
303 vh.checkbox.setChecked(isActiveAdmin(item));
309 vh.checkbox.setEnabled(enabled);
  /external/autotest/frontend/client/src/autotest/afe/create/
CreateJobViewPresenter.java 303 ICheckBox checkbox = profilersPanel.generateCheckBox(); local
304 checkbox.setText(name);
305 checkbox.addClickHandler(new ClickHandler() {
312 profilersPanel.add(checkbox);
498 // Updates the fetch test checkbox UI
    [all...]
  /prebuilts/devtools/tools/lib/
sdkstats.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkstats/24.4.0-beta6/
sdkstats-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkstats/24.5.0/
sdkstats-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkstats/25.0.0-alpha1/
sdkstats-25.0.0-alpha1.jar 
  /prebuilts/maven_repo/android/com/android/databinding/adapters/1.0-rc0/
adapters-1.0-rc0.jar 

Completed in 1284 milliseconds

1 2 3