HomeSort by relevance Sort by last modified time
    Searched full:checkbox (Results 151 - 175 of 656) sorted by null

1 2 3 4 5 67 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
Hover.java 31 import android.widget.CheckBox;
54 * A checkbox is used to control whether a special view, the Interceptor, will intercept
61 private CheckBox mInterceptCheckBox;
71 mInterceptCheckBox = (CheckBox) findViewById(R.id.intercept_checkbox);
  /development/samples/Home/res/drawable/
all_applications.xml 3 /* //device/apps/common/res/drawable/checkbox.xml
  /external/chromium/chrome/browser/resources/net_internals/
httpthrottlingview.js 30 * Handler for the onclick event of the checkbox.
  /external/chromium/chrome/browser/resources/options/
advanced_options.css 7 #advancedPage > section > div:only-of-type > div.checkbox {
certificate_edit_ca_trust_overlay.js 97 * @param {boolean} trustSSL The initial value of SSL trust checkbox.
98 * @param {boolean} trustEmail The initial value of Email trust checkbox.
114 * checkbox.
138 * checkbox.
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 46 // Create some checkbox items.
49 console.log("checkbox item " + info.menuItemId +
55 {"title": "Checkbox1", "type": "checkbox", "onclick":checkboxOnClick});
57 {"title": "Checkbox2", "type": "checkbox", "onclick":checkboxOnClick});
  /external/webkit/Source/WebCore/manual-tests/
style-keypress-events.html 9 <input type="checkbox" id="disable"><label for="disable">preventDefault() in keydown</label>
  /frameworks/base/core/res/res/drawable/
menuitem_checkbox.xml 3 /* //device/apps/common/res/drawable/checkbox.xml
  /frameworks/base/docs/html/guide/tutorials/views/
hello-formstuff.jd 110 <h2>CheckBox</h2>
111 <p>A checkbox for selecting items. We'll make it display the the current state when pressed.</p>
114 <li>Open the layout file and, inside the LinearLayout, add the {@link android.widget.CheckBox} element:
116 &lt;CheckBox android:id="@+id/checkbox"
125 final CheckBox checkbox = (CheckBox) findViewById(R.id.checkbox);
126 checkbox.setOnClickListener(new OnClickListener()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbResolverActivity.java 34 import android.widget.CheckBox;
62 true /* Set alwaysUseOption to true to enable "always use this app" checkbox. */ );
64 CheckBox alwaysUse = (CheckBox)findViewById(com.android.internal.R.id.alwaysUse);
  /packages/apps/Browser/src/com/android/browser/
GeolocationPermissionsPrompt.java 26 import android.widget.CheckBox;
35 private CheckBox mRemember;
57 mRemember = (CheckBox) findViewById(R.id.remember);
80 // The checkbox should always be intially checked.
  /packages/apps/Settings/res/values-sw600dp/
bools.xml 18 <!-- Whether there is a silent mode checkbox -->
  /development/samples/ApiDemos/res/layout/
layout_animations_hideshow.xml 39 <CheckBox
45 <CheckBox
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options.html 24 <div id="data-roaming" class="checkbox">
28 metric="Options_Internet_DataRoaming" type="checkbox">
  /external/chromium/chrome/browser/ui/gtk/
first_run_dialog.h 56 // Crash reporting checkbox
59 // Make browser default checkbox
  /packages/apps/Settings/res/layout/
preference_widget_sync_toggle.xml 39 <CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
40 android:id="@android:id/checkbox"
trusted_credential.xml 47 <!-- checkbox is invisible and not gone so that the height is consistent between tabs -->
48 <CheckBox
  /packages/apps/Email/res/layout-sw600dp/
account_setup_options_common.xml 70 <CheckBox
85 <CheckBox
101 <CheckBox
119 <CheckBox
137 <CheckBox
153 <CheckBox
  /frameworks/base/docs/html/resources/tutorials/views/
hello-formstuff.jd 39 <li><a href="#Checkbox">Checkbox</a></li>
173 <h2 id="Checkbox">Checkbox</h2>
175 <p>In this section, you will create a checkbox for selecting items, using the {@link
176 android.widget.CheckBox} widget. When the checkbox is pressed, a toast message will
177 indicate the current state of the checkbox.</p>
180 <li>Open the <code>res/layout/main.xml</code> file and add the {@link android.widget.CheckBox}
183 &lt;CheckBox android:id="@+id/checkbox
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupExchangeTests.java 25 import android.widget.CheckBox;
48 private CheckBox mSslRequiredCheckbox;
49 private CheckBox mTrustAllCertificatesCheckbox;
179 // "trust certificates" checkbox (not checked, but visible now).
194 // "trust certificates" checkbox (not checked, but visible now).
222 mSslRequiredCheckbox = (CheckBox) mActivity.findViewById(R.id.account_ssl);
224 (CheckBox) mActivity.findViewById(R.id.account_trust_certificates);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupOptions.java 35 import android.widget.CheckBox;
59 private CheckBox mDefaultView;
60 private CheckBox mNotifyView;
61 private CheckBox mSyncContactsView;
62 private CheckBox mSyncCalendarView;
63 private CheckBox mSyncEmailView;
64 private CheckBox mBackgroundAttachmentsView;
85 mDefaultView = (CheckBox) UiUtilities.getView(this, R.id.account_default);
86 mNotifyView = (CheckBox) UiUtilities.getView(this, R.id.account_notify);
87 mSyncContactsView = (CheckBox) UiUtilities.getView(this, R.id.account_sync_contacts)
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
VideoChatTestActivity.java 20 import android.widget.CheckBox;
158 ((CheckBox) findViewById(R.id.frontcameracheckbox)).isChecked();
159 boolean testBackCamera = ((CheckBox) findViewById(R.id.backcameracheckbox)).isChecked();
160 boolean testQVGA = ((CheckBox) findViewById(R.id.qvgacheckbox)).isChecked();
161 boolean testVGA = ((CheckBox) findViewById(R.id.vgacheckbox)).isChecked();
162 boolean test15fps = ((CheckBox) findViewById(R.id.fps15checkbox)).isChecked();
163 boolean test30fps = ((CheckBox) findViewById(R.id.fps30checkbox)).isChecked();
164 boolean testRotate0 = ((CheckBox) findViewById(R.id.rotate0checkbox)).isChecked();
165 boolean testRotate90 = ((CheckBox) findViewById(R.id.rotate90checkbox)).isChecked();
166 boolean testRotate180 = ((CheckBox) findViewById(R.id.rotate180checkbox)).isChecked()
    [all...]
  /external/chromium/chrome/browser/accessibility/
renderer_accessibility_browsertest.cc 100 "<body><input type='button' value='push' /><input type='checkbox' />"
141 const WebAccessibility& checkbox = body.children[1]; local
142 EXPECT_EQ(WebAccessibility::ROLE_CHECKBOX, checkbox.role);
144 "input", GetAttr(checkbox, WebAccessibility::ATTR_HTML_TAG).c_str());
147 GetAttr(checkbox, WebAccessibility::ATTR_DISPLAY).c_str());
148 ASSERT_EQ(1U, checkbox.html_attributes.size());
150 "type", UTF16ToUTF8(checkbox.html_attributes[0].first).c_str());
152 "checkbox", UTF16ToUTF8(checkbox.html_attributes[0].second).c_str());
  /external/chromium/chrome/browser/resources/
bug_report.html 108 $('page-url-checkbox').checked = false;
174 <input id="page-url-checkbox" type="checkbox"
194 <input id="user-email-checkbox" type="checkbox"
213 <input id="sys-info-checkbox" type="checkbox"
231 <input id="screenshot-checkbox" type="checkbox">
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java 47 /** Checkbox indicating whether an application node is present */
49 /** Listen to changes to the UI node for <application> and updates the checkbox */
51 /** Internal flag to know where we're programmatically modifying the checkbox and we want to
52 * avoid triggering the checkbox's callback. */
82 // Set the state of the checkbox
114 // Initialize the state of the checkbox
145 * This listener synchronizes the XML application node when the checkbox
287 * This listener synchronizes the UI (i.e. the checkbox) with the
295 // To update the checkbox to reflect the actual state, we just need

Completed in 621 milliseconds

1 2 3 4 5 67 8 91011>>