/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
CheckBoxTest.java | 3 import android.widget.CheckBox; 15 CheckBox checkBox = new CheckBox(null); 16 assertThat(checkBox.isChecked(), equalTo(false)); 18 checkBox.setChecked(true); 19 assertThat(checkBox.isChecked(), equalTo(true)); 21 checkBox.performClick(); 22 assertThat(checkBox.isChecked(), equalTo(false)); 24 checkBox.toggle() [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-applyCompletion11b.diff | 1 Code completion in completion1.xml for ^<TextView selecting <CheckBox />: 4 + <CheckBox ^/><TextView
|
sample4.info | 2 android.widget.CheckBox [0,0,80,36] <CheckBox>
|
sample10.info | 5 android.widget.CheckBox [0,86,107,124] <CheckBox>
|
sample9.info | 6 android.widget.CheckBox [0,86,107,124] <CheckBox>
|
sample2.info | 7 android.widget.CheckBox [18,108,98,144] <CheckBox>
|
sample4-expected-changeLayout4.xml | 8 <CheckBox 14 android:text="CheckBox" > 15 </CheckBox>
|
sample4.xml | 3 <CheckBox android:text="CheckBox" android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
|
sample7.info | 10 android.widget.CheckBox [223,10,240,130] <CheckBox>
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
language_pinyin_options.html | 7 <div class="checkbox"> 11 type="checkbox"> 19 <div class="checkbox"> 23 type="checkbox"> 31 <div class="checkbox"> 35 type="checkbox"> 43 <div class="checkbox"> 47 type="checkbox"> 55 <div class="checkbox"> 59 type="checkbox"> [all...] |
accounts_options.html | 12 <div class="checkbox"> 15 type="checkbox"> 23 <div class="checkbox"> 26 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> 34 <div class="checkbox"> 37 type="checkbox" inverted_pref>
|
/frameworks/base/core/java/android/widget/ |
CheckBox.java | 27 * A checkbox is a specific type of two-states button that can be either 28 * checked or unchecked. A example usage of a checkbox inside your activity 39 * final CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox_id); 40 * if (checkBox.isChecked()) { 41 * checkBox.setChecked(false); 47 * <p>See the <a href="{@docRoot}guide/topics/ui/controls/checkbox.html">Checkboxes</a> 58 public class CheckBox extends CompoundButton { 59 public CheckBox(Context context) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
CheckBoxTest.java | 27 import android.widget.CheckBox; 34 new CheckBox(mContext, mAttrSet, 0); 35 new CheckBox(mContext, mAttrSet); 36 new CheckBox(mContext); 39 new CheckBox(null, null, -1); 46 new CheckBox(null, null); 53 new CheckBox(null);
|
/external/chromium/chrome/browser/resources/options/ |
clear_browser_data_overlay.html | 11 <div class="checkbox"> 14 pref="browser.clear_data.browsing_history" type="checkbox"> 18 <div class="checkbox"> 21 pref="browser.clear_data.download_history" type="checkbox"> 25 <div class="checkbox"> 28 pref="browser.clear_data.cache" type="checkbox"> 32 <div class="checkbox"> 35 pref="browser.clear_data.cookies" type="checkbox"> 42 <div class="checkbox"> 45 pref="browser.clear_data.passwords" type="checkbox"> [all...] |
advanced_options.html | 20 <div class="checkbox"> 23 metric="Options_LinkDoctorCheckbox" type="checkbox"> 27 <div class="checkbox"> 30 metric="Options_UseSuggestCheckbox" type="checkbox"> 34 <div class="checkbox"> 37 metric="Options_DnsPrefetchCheckbox" type="checkbox"> 41 <div class="checkbox"> 44 metric="Options_SafeBrowsingCheckbox" type="checkbox"> 49 <div class="checkbox" id="metricsReportingSetting"> 52 pref="cros.metrics.reportingEnabled" type="checkbox"> [all...] |
certificate_edit_ca_trust_overlay.html | 10 <input type="checkbox" id="certificateCaTrustSSLCheckbox"> 15 <input type="checkbox" id="certificateCaTrustEmailCheckbox"> 20 <input type="checkbox" id="certificateCaTrustObjSignCheckbox">
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/ |
dillo | 7 checkbox
|
/packages/apps/Settings/res/layout/ |
wifi_notify_scan_mode.xml | 5 <CheckBox 6 android:id="@+id/checkbox"
|
/frameworks/base/docs/html/guide/topics/ui/controls/ |
checkbox.jd | 14 <li>{@link android.widget.CheckBox}</li> 20 present each checkbox option in a vertical list.</p> 24 <p>To create each checkbox option, create a {@link android.widget.CheckBox} in your layout. Because 25 a set of checkbox options allows the user to select multiple items, each checkbox is managed 30 <p>When the user selects a checkbox, the {@link android.widget.CheckBox} object receives an 33 <p>To define the click event handler for a checkbox, add the <code><a 35 <code><CheckBox></code> element in your XM [all...] |
/development/samples/Support7Demos/res/layout/ |
action_bar_fragment_menu.xml | 29 <CheckBox android:id="@+id/menu1" 34 </CheckBox> 36 <CheckBox android:id="@+id/menu2" 41 </CheckBox> 43 <CheckBox android:id="@+id/menu3" 48 </CheckBox> 50 <CheckBox android:id="@+id/has_options_menu" 55 </CheckBox> 57 <CheckBox android:id="@+id/menu_visibility" 62 </CheckBox> [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
LayoutAnimations.java | 31 import android.widget.CheckBox; 95 CheckBox customAnimCB = (CheckBox) findViewById(R.id.customAnimCB); 103 CheckBox appearingCB = (CheckBox) findViewById(R.id.appearingCB); 109 CheckBox disappearingCB = (CheckBox) findViewById(R.id.disappearingCB); 115 CheckBox changingAppearingCB = (CheckBox) findViewById(R.id.changingAppearingCB); 121 CheckBox changingDisappearingCB = (CheckBox) findViewById(R.id.changingDisappearingCB) [all...] |
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/ |
BatteryWaster.java | 29 import android.widget.CheckBox; 55 findViewById(R.id.checkbox).setOnClickListener(mClickListener); 75 if (((CheckBox)findViewById(R.id.checkbox)).isChecked()) { 78 if (((CheckBox)findViewById(R.id.checkbox_wake)).isChecked()) { 95 CheckBox checkbox = (CheckBox)v; 96 if (checkbox.isChecked()) { 106 CheckBox checkbox = (CheckBox)v [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
partially-opaque-form-elements.html | 12 <li>A checkbox</li> 21 <input value="Checkbox" type="checkbox">
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/buildbot/ |
options.html | 12 // Make sure the checkbox checked state gets properly initialized from the 24 Use desktop notifications: <input id="notifications" type="checkbox" onclick="save()">
|
/external/webkit/Source/WebCore/manual-tests/plugins/ |
windowed.html | 78 <input type="checkbox" name="visibilityCheckBox"> Verify if the flash toggles visibility 81 <input type="checkbox" name="resizeCheckBox"> Verify if the flash resizes when element is resized 84 <input type="checkbox" name="moveCheckBox"> Verify if the flash moves when element is moved 87 <input type="checkbox" name="animationCheckBox"> Verify css animations with flash 90 <input type="checkbox" name="printCheckBox"> Verify if printing displays flash on the print preview and printer output <br/> 92 <input type="checkbox" name="zoomCheckBox"> Verify if elements in flash are correctly painted and clickable after zooming <br/> 94 <input type="checkbox" name="screenshotBox"> Verify if taking a screenshot from QtTestBrowser displays flash <br/> 96 <input type="checkbox" name="paintSystemsCheckBox"> Verify if flash is displayed with graphicssystems - raster, opengl <br/> 98 <input type="checkbox" name="focusCheckBox"> Verify if shifting focus back and forth from flash to html works 101 <input type="checkbox" name="testZIndex"> Test if html can display over flas [all...] |