HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 126 - 150 of 724) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigUiForSetupWizardXL.java 29 import android.widget.Button;
39 private Button mConnectButton;
40 private Button mCancelButton;
64 mConnectButton = (Button)activity.findViewById(R.id.wifi_setup_connect);
65 mCancelButton = (Button)activity.findViewById(R.id.wifi_setup_cancel);
137 public Button getSubmitButton() {
142 public Button getForgetButton() {
147 public Button getCancelButton() {
159 // In XL setup screen, we won't show Forget button for simplifying the UI.
WifiDialog.java 26 import android.widget.Button;
59 /* During creation, the submit button can be unavailable to determine
60 * visibility. Right after creation, update button visibility */
70 public Button getSubmitButton() {
75 public Button getForgetButton() {
80 public Button getCancelButton() {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateViewButton.java 19 import android.widget.Button;
27 * The button for the candidate-view
30 public class CandidateViewButton extends Button {
47 /* for changing the button on CandidateView when it is pressed. */
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService.java 31 import android.widget.Button;
54 // Watch for button clicks.
55 Button button = (Button)findViewById(R.id.start_alarm); local
56 button.setOnClickListener(mStartAlarmListener);
57 button = (Button)findViewById(R.id.stop_alarm);
58 button.setOnClickListener(mStopAlarmListener);
IntentActivityFlags.java 15 import android.widget.Button;
27 // Watch for button clicks.
28 Button button = (Button)findViewById(R.id.flag_activity_clear_task); local
29 button.setOnClickListener(mFlagActivityClearTaskListener);
30 button = (Button)findViewById(R.id.flag_activity_clear_task_pi);
31 button.setOnClickListener(mFlagActivityClearTaskPIListener);
ActivityRecreate.java 25 import android.widget.Button;
54 // Watch for button clicks.
55 Button button = (Button)findViewById(R.id.recreate); local
56 button.setOnClickListener(mRecreateListener);
ReceiveResult.java 29 import android.widget.Button;
93 // Watch for button clicks.
94 Button getButton = (Button)findViewById(R.id.get);
RedirectGetter.java 26 import android.widget.Button;
45 // Watch for button clicks.
46 Button applyButton = (Button)findViewById(R.id.apply);
TextToSpeechActivity.java 24 import android.widget.Button;
52 private Button mAgainButton;
65 // The button is disabled in the layout.
67 mAgainButton = (Button) findViewById(R.id.again_button);
106 // Allow the user to press the button for the app to speak again.
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
AddRssItem.java 23 import android.widget.Button;
32 // Button handler for Submit/Cancel.
68 Button btn = (Button) findViewById(R.id.cancel);
71 btn = (Button) findViewById(R.id.submit);
  /external/chromium/chrome/browser/chromeos/login/
shutdown_button.h 9 #include "views/controls/button/text_button.h"
18 // Initializes shutdown button.
21 // Layout the shutdown button at the right bottom corner of
33 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
  /external/chromium/chrome/browser/ui/views/infobars/
translate_message_infobar.h 21 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 26 import android.widget.Button;
35 private Button mLeftButton;
36 private Button mCenterButton;
37 private Button mRightButton;
61 assertTrue("left button focused", mLeftButton.isFocused());
71 assertEquals("focus search right from left button should be center button",
74 assertEquals("focus search right from center button should be right button",
77 assertEquals("focus search left from centr button should be left button"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CustomMenu.java 24 import android.widget.Button;
37 private Button mButton;
41 public DropDownMenu(Context context, Button button, int menuId,
43 mButton = button;
75 public DropDownMenu addDropDownMenu(Button button, int menuId) {
76 DropDownMenu menu = new DropDownMenu(mContext, button, menuId, this);
  /packages/apps/Mms/src/com/android/mms/ui/
ConfirmRateLimitActivity.java 34 import android.widget.Button;
52 Button button = (Button) findViewById(R.id.btn_yes); local
53 button.setOnClickListener(new OnClickListener() {
59 button = (Button) findViewById(R.id.btn_no);
60 button.setOnClickListener(new OnClickListener() {
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/util/
ActionButton.java 27 import org.eclipse.swt.widgets.Button;
31 private Button mButton;
38 mButton = new Button(parent, SWT.CHECK);
40 mButton = new Button(parent, SWT.PUSH);
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
PreferenceWithHeaders.java 26 import android.widget.Button;
40 // Add a button to the header list.
42 Button button = new Button(this); local
43 button.setText("Some action");
44 setListFooter(button);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TextSwitcher1.java 27 import android.widget.Button;
58 Button nextButton = (Button) findViewById(R.id.next);
  /external/chromium/chrome/browser/speech/
speech_input_bubble_controller.h 36 // Invoked when the user clicks on a button in the speech input UI.
38 SpeechInputBubble::Button button) = 0;
80 virtual void InfoBubbleButtonClicked(SpeechInputBubble::Button button);
105 SpeechInputBubble::Button button);
  /external/webkit/Source/WebCore/platform/wx/
MouseEventWx.cpp 57 if (event.LeftIsDown() || event.Button(wxMOUSE_BTN_LEFT))
59 else if (event.RightIsDown() || event.Button(wxMOUSE_BTN_RIGHT))
61 else if (event.MiddleIsDown() || event.Button(wxMOUSE_BTN_MIDDLE))
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleNavigationAction.h 53 static WebMouseEvent::Button mouseButtonForNavigationAction(const WebCore::NavigationAction&);
57 WebMouseEvent::Button mouseButton() const { return m_mouseButton; }
68 WebMouseEvent::Button m_mouseButton;
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetEventsTest.java 21 import android.widget.Button;
31 Button button; field in class:AnimatorSetEventsTest
37 button = (Button) getActivity().findViewById(R.id.animatingButton);
79 button.setTranslationX(value);
84 button.setTranslationY(value);
  /frameworks/base/core/tests/coretests/src/android/view/
DisabledTest.java 25 import android.widget.Button;
33 private Button mDisabled;
47 mDisabled = (Button) a.findViewById(R.id.disabledButton);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtons.java 27 import android.widget.Button;
66 Button button = new Button(parent.getContext()); local
67 button.setText(label);
68 return button;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineAlignmentZeroWidthAndWeightTest.java 27 import android.widget.Button;
30 private Button mShowButton;
41 mShowButton = (Button) activity.findViewById(R.id.show);
53 // Pressing the button will show an ExceptionTextView that might set a failed bit if

Completed in 551 milliseconds

1 2 3 4 56 7 8 91011>>