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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
CheckBox.java 25 * A checkbox is a specific type of two-states button that can be either
26 * checked or unchecked. A example usage of a checkbox inside your activity
37 * final CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox_id);
38 * if (checkBox.isChecked()) {
39 * checkBox.setChecked(false);
56 public class CheckBox extends CompoundButton {
57 public CheckBox(Context context) {
61 public CheckBox(Context context, AttributeSet attrs)
    [all...]
  /development/simulator/app/
Resource.h 46 IDC_USE_GDB, // main - checkbox
47 IDC_USE_VALGRIND, // main - checkbox
48 IDC_CHECK_JNI, // main - checkbox
59 IDC_SPREFS_AUTO_POWER_ON, // sim prefs page - checkbox
62 IDC_RPREFS_ENABLE_SOUND, // runtime prefs page - checkbox
63 IDC_RPREFS_ENABLE_FAKE_CAMERA,// runtime prefs page - checkbox
74 IDC_LOG_PREFS_SINGLE_LINE, // log prefs - checkbox
77 IDC_LOG_PREFS_USE_COLOR, // log prefs - checkbox
78 IDC_LOG_PREFS_FONT_MONO, // log prefs - checkbox
83 IDC_LOG_PREFS_WRITE_FILE, // log prefs - checkbox
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CheckBoxTest.java 32 import android.widget.CheckBox;
34 @TestTargetClass(CheckBox.class)
39 method = "CheckBox",
44 method = "CheckBox",
49 method = "CheckBox",
54 "CheckBox's constructors when the input AttributeSet or Context is null")
59 new CheckBox(mContext, mAttrSet, 0);
60 new CheckBox(mContext, mAttrSet);
61 new CheckBox(mContext);
64 new CheckBox(null, null, -1)
    [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/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 QtLauncher display 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...]
windowless.html 79 <input type="checkbox" name="visibilityCheckBox"> Verify if the flash toggles visibility
82 <input type="checkbox" name="resizeCheckBox"> Verify if the flash resizes when element is resized
85 <input type="checkbox" name="moveCheckBox"> Verify if the flash moves when element is moved
88 <input type="checkbox" name="animationCheckBox"> Verify css animations with flash
91 <input type="checkbox" name="printCheckBox"> Verify if printing displays flash on the print preview and printer output <br/>
93 <input type="checkbox" name="zoomCheckBox"> Verify if elements in flash are correctly painted and clickable after zooming <br/>
95 <input type="checkbox" name="screenshotBox"> Verify if taking a screenshot from QtLauncher display flash <br/>
97 <input type="checkbox" name="paintSystemsCheckBox"> Verify if flash is displayed with graphicssystems - raster, opengl <br/>
99 <input type="checkbox" name="focusCheckBox"> Verify if shifting focus back and forth from flash to html works
102 <input type="checkbox" name="testZIndex"> Test if html can display over flas
    [all...]
  /external/webkit/WebCore/manual-tests/
nested-plug-ins.html 26 <input type="checkbox" checked="true" onclick="toggleDisplay(document.getElementById('middle'))"> Outer frame display
29 <input type="checkbox" checked="true" onclick="toggleDisplay(document.getElementById('middle').contentDocument.getElementById('inner'))"> Inner frame display
34 <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle'))"> Outer frame visibility
37 <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle').contentDocument.getElementById('inner'))"> Inner frame visibility
40 <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle').contentDocument.getElementById('inner').contentDocument.getElementById('plugin'))"> Inner plug-in visibility
remove-form-node-with-radio-buttons-crash.html 6 doc.innerHTML = "<form name=\"gaga\"><input type=\"radio\" name=\"asdf\" id=\"chk\" value=\"A\"> Checkbox 1" +
7 "<input type=\"radio\" name=\"asdf\" value=\"B\"> Checkbox 2";
  /packages/apps/Email/src/com/android/email/activity/
Debug.java 31 import android.widget.CheckBox;
38 private CheckBox mEnableDebugLoggingView;
39 private CheckBox mEnableSensitiveLoggingView;
40 private CheckBox mEnableExchangeLoggingView;
41 private CheckBox mEnableExchangeFileLoggingView;
54 mEnableDebugLoggingView = (CheckBox)findViewById(R.id.debug_logging);
55 mEnableSensitiveLoggingView = (CheckBox)findViewById(R.id.sensitive_logging);
64 mEnableExchangeLoggingView = (CheckBox)findViewById(R.id.exchange_logging);
65 mEnableExchangeFileLoggingView = (CheckBox)findViewById(R.id.exchange_file_logging);
  /packages/apps/Email/res/layout/
debug.xml 28 <CheckBox
34 <CheckBox
41 <CheckBox
47 <CheckBox
  /frameworks/base/core/res/res/layout/
preference_widget_checkbox.xml 17 <!-- Layout used by CheckBoxPreference for the checkbox style. This is inflated
19 <CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+android:id/checkbox"
list_menu_item_checkbox.xml 17 <CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@+id/checkbox"
  /development/apps/Development/src/com/android/development/
DevelopmentSettings.java 38 import android.widget.CheckBox;
53 private CheckBox mWaitForDebuggerCB;
54 private CheckBox mAlwaysFinishCB;
56 private CheckBox mShowLoadCB;
57 private CheckBox mShowCpuCB;
58 private CheckBox mEnableGLCB;
59 private CheckBox mShowUpdatesCB;
60 private CheckBox mShowBackgroundCB;
61 private CheckBox mShowSleepCB;
62 private CheckBox mShowXmppCB
    [all...]
  /development/apps/Development/res/layout/
development_settings.xml 44 <CheckBox android:id="@+id/wait_for_debugger"
63 <CheckBox android:id="@+id/show_load"
70 <CheckBox android:id="@+id/show_updates"
77 <CheckBox android:id="@+id/compatibility_mode"
96 <CheckBox android:id="@+id/always_finish"
103 <CheckBox android:id="@+id/show_cpu"
110 <CheckBox android:id="@+id/enable_gl"
117 <CheckBox android:id="@+id/show_background"
124 <CheckBox android:id="@+id/show_sleep"
152 <CheckBox android:id="@+id/show_xmpp
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 34 * BluetoothEnabler is a helper to manage the Bluetooth on/off checkbox
53 public BluetoothEnabler(Context context, CheckBoxPreference checkBox) {
55 mCheckBox = checkBox;
56 mOriginalSummary = checkBox.getSummary();
57 checkBox.setPersistent(false);
62 checkBox.setEnabled(false);
  /frameworks/base/tests/BatteryWaster/res/layout/
battery_waster.xml 23 <CheckBox android:id="@+id/checkbox"
34 <CheckBox android:id="@+id/checkbox_wake"
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadItem.java 22 import android.widget.CheckBox;
27 * treat them at clicks on the checkbox. This makes rapid selection of many items easier. This class
35 private CheckBox mCheckBox;
68 mCheckBox = (CheckBox) findViewById(R.id.download_checkbox);
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
SyncStateCheckBoxPreference.java 91 View checkBox = view.findViewById(android.R.id.checkbox);
93 checkBox.setVisibility(View.GONE);
103 checkBox.setVisibility(View.VISIBLE);
152 // checkbox state
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 43 import android.widget.CheckBox;
120 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder
171 h.checkbox = (CheckBox)v.findViewById(R.id.checkbox);
182 vh.checkbox.setChecked(mActiveAdmins.contains(item.getComponent()));
  /packages/experimental/StrictModeTest/res/layout/
main.xml 16 <CheckBox
22 <CheckBox
28 <CheckBox
34 <CheckBox
40 <CheckBox
46 <CheckBox
52 <CheckBox
  /development/samples/ApiDemos/res/layout/
list_item_checkbox.xml 17 <CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
  /development/samples/Home/res/drawable/
all_applications.xml 3 /* //device/apps/common/res/drawable/checkbox.xml
  /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...]
  /packages/apps/Browser/src/com/android/browser/
GeolocationPermissionsPrompt.java 29 import android.widget.CheckBox;
39 private CheckBox mRemember;
56 mRemember = (CheckBox) findViewById(R.id.remember);
80 // The checkbox should always be intially checked.

Completed in 386 milliseconds

1 2 3 4 5 6 7 8 91011>>