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

1 2

  /frameworks/base/core/java/android/widget/
Button.java 27 * Represents a push-button widget. Push-buttons can be
30 * <p>A typical use of a push-button in an activity would be the following:
40 * final Button button = (Button) findViewById(R.id.button_id);
41 * button.setOnClickListener(new View.OnClickListener() {
50 * the button in your activity, you can assign a method to your button in the XML layout,
54 * &lt;Button
60 * <p>Now, when a user clicks the button, the Android system calls the activity's {@cod
    [all...]
NumberPicker.java 68 * presents the current value as an editable input field with an increment button
69 * above and a decrement button below. Long pressing the buttons allows for a quick
201 * The increment button.
206 * The decrement button.
453 * Whether the increment virtual button is pressed.
458 * Whether the decrement virtual button is pressed.
656 // increment button
665 // 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/chromium/chrome/browser/speech/
speech_input_bubble.h 30 enum Button {
38 // Invoked when the user selects a button in the info bubble. The InfoBubble
40 virtual void InfoBubbleButtonClicked(Button button) = 0;
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 30 import android.widget.Button;
102 expected.setClassName(Button.class.getName());
107 final Button button = (Button) getActivity().findViewById(R.id.button); local
118 button.performClick();
138 expected.setClassName(Button.class.getName());
143 final Button button = (Button) getActivity().findViewById(R.id.button) local
181 final Button button = (Button) getActivity().findViewById(R.id.button); local
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.h 46 Button,
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 248 enum Button {
255 Button button; member in class:WebKit::WebMouseEvent
266 , button(ButtonNone)
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 114 enum Button {
123 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp);
125 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp, bool didActivateWebView);
128 Button button() const { return static_cast<Button>(m_button); } function in class:WebKit::WebMouseEvent
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 122 .className(android.widget.Button.class.getName()).clickable(true)
146 getObjectByDescription("Button 1").click();
147 verifyDialogActionResults("Button 1");
148 getObjectByDescription("Button 2").click();
149 verifyDialogActionResults("Button 2");
150 getObjectByDescription("Button 3").click();
151 verifyDialogActionResults("Button 3");
161 getObjectByText("Button 1").click();
162 verifyDialogActionResults("Button 1");
163 getObjectByText("Button 2").click()
369 UiObject button = new UiObject(frameLayout.childSelector(gridLayout).childSelector( local
    [all...]
  /external/qemu/android/skin/
window.c 632 typedef struct Button {
639 } Button;
642 button_done( Button* button )
644 skin_image_unref( &button->image );
645 button->background = NULL;
649 button_init( Button* button, SkinButton* sbutton, SkinLocation* loc, Background* back, SkinRect* frame, SkinLayout* slayout )
653 button->image = skin_image_rotate( sbutton->image, loc->rotation );
654 button->background = back
943 ButtonState button; member in struct:SkinWindow
1016 ButtonState* button = &window->button; local
1608 Button* button = layout->buttons; local
1675 Button* button; local
    [all...]
  /prebuilts/tools/common/m2/internal/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 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 912 milliseconds

1 2