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

1 2 3

  /frameworks/base/core/java/android/widget/
Button.java 25 * Represents a push-button widget. Push-buttons can be
28 * <p>A typical use of a push-button in an activity would be the following:
38 * final Button button = (Button) findViewById(R.id.button_id);
39 * button.setOnClickListener(new View.OnClickListener() {
48 * the button in your activity, you can assign a method to your button in the XML layout,
52 * &lt;Button
58 * <p>Now, when a user clicks the button, the Android system calls the activity's {@cod
    [all...]
NumberPicker.java 75 * presents the current value as an editable input field with an increment button
76 * above and a decrement button below. Long pressing the buttons allows for a quick
213 * The increment button.
218 * The decrement button.
465 * Whether the increment virtual button is pressed.
470 * Whether the decrement virtual button is pressed.
708 // increment button
717 // decrement button
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ButtonTest.java 25 import android.widget.Button;
35 new Button(mContext, attrs, 0);
36 new Button(mContext, attrs);
37 new Button(mContext);
40 new Button(null, null, -1);
47 new Button(null, null);
54 new Button(null);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
AccessibleLinearLayout.java 23 import android.widget.Button;
27 * Fake Button class, used so TextViews can announce themselves as Buttons, for accessibility.
38 event.setClassName(Button.class.getName());
44 info.setClassName(Button.class.getName());
AccessibleTextView.java 23 import android.widget.Button;
27 * Fake Button class, used so TextViews can announce themselves as Buttons, for accessibility.
38 event.setClassName(Button.class.getName());
44 info.setClassName(Button.class.getName());
  /external/autotest/client/site_tests/desktopui_SonicExtension/extension_pages/
web_elements.py 82 class Button(WebElements):
83 """Web element button and its controls."""
87 Click on the button.
117 """Web element radio button and its controls."""
120 """Click the radio button."""
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
MultiUserSwitch.java 30 import android.widget.Button;
171 event.setClassName(Button.class.getName());
177 info.setClassName(Button.class.getName());
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatButton.java 31 import android.widget.Button;
36 * A {@link Button} which supports compatible features on older version of the platform,
47 * <p>This will automatically be used when you use {@link android.widget.Button} in your
50 public class AppCompatButton extends Button implements TintableBackgroundView {
168 event.setClassName(Button.class.getName());
174 info.setClassName(Button.class.getName());
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
bootstrap.js 155 * bootstrap-button.js v2.0.4
179 /* BUTTON PUBLIC CLASS DEFINITION
182 var Button = function (element, options) {
184 this.options = $.extend({}, $.fn.button.defaults, options)
187 Button.prototype.setState = function (state) {
206 Button.prototype.toggle = function () {
217 /* BUTTON PLUGIN DEFINITION
220 $.fn.button = function (option) {
223 , data = $this.data('button')
225 if (!data) $this.data('button', (data = new Button(this, options))
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 32 import android.widget.Button;
104 expected.setClassName(Button.class.getName());
109 final Button button = (Button) getActivity().findViewById(R.id.button); local
120 button.performClick();
140 expected.setClassName(Button.class.getName());
145 final Button button = (Button) getActivity().findViewById(R.id.button) local
183 final Button button = (Button) getActivity().findViewById(R.id.button); local
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/
url.py 328 return self.become(Button)
330 button = property(button__get) variable in class:URL
369 class Button(URLResource):
374 >>> b = u.button['confirm=Sure?'](id=5, content='del')
376 '<button onclick="if (confirm(\'Sure?\')) {location.href=\'/delete?id=5\'}; return false">del</button>'
379 default_params = {'tag': 'button'}
393 button = self
395 button = button.param(confirm=vars.pop('confirm')
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISPrereqs.h 154 //! Base type for all device components (button, axis, etc)
158 OIS_Button = 1, //ie. Key, mouse button, joy button, etc
165 //! Base of all device components (button, axis, etc)
175 //! Button can be a keyboard key, mouse button, etc
176 class _OISExport Button : public Component
179 Button() : Component(OIS_Button), pushed(false) {}
180 Button(bool bPushed) : Component(OIS_Button), pushed(bPushed) {}
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Button.java 32 /** A button is a {@link Table} with a checked state and additional {@link ButtonStyle style} fields for pressed, unpressed, and
33 * checked. Each time a button is clicked, the checked state is toggled. Being a table, a button can contain any other actors.<br>
35 * The button's padding is set to the background drawable's padding when the background changes, overwriting any padding set
36 * manually. Padding can still be set on the button's table cells.
38 * {@link ChangeEvent} is fired when the button is clicked. Cancelling the event will restore the checked button state to what is
41 * The preferred size of the button is determined by the background and the button contents.
43 public class Button extends Table implements Disableable {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 

Completed in 777 milliseconds

1 2 3