HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 176 - 200 of 1134) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 43 t = Button(None, {'text': 'Test',
46 q = Button(None, {'text': 'Quit',
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test1DetailFragment.java 27 import android.widget.Button;
33 private Button mSubmitButton;
54 mSubmitButton = (Button) rootView.findViewById(R.id.test1SubmitButton);
57 mSubmitButton.setOnClickListener(new Button.OnClickListener() {
  /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);
FragmentStackFragment.java 28 import android.widget.Button;
52 // Watch for button clicks.
53 Button button = (Button)v.findViewById(R.id.new_fragment); local
54 button.setOnClickListener(new OnClickListener() {
59 button = (Button)v.findViewById(R.id.delete_fragment);
60 button.setOnClickListener(new OnClickListener() {
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);
  /external/chromium_org/chrome/browser/ui/views/infobars/
translate_message_infobar.h 22 virtual void ButtonPressed(views::Button* sender,
  /external/chromium_org/ui/app_list/views/
search_result_actions_view.h 10 #include "ui/views/controls/button/button.h"
17 // SearchResultActionsView displays a SearchResult::Actions in a button
18 // strip. Each action is presented as a button and horizontally laid out.
32 virtual void ButtonPressed(views::Button* sender,
  /external/chromium_org/ui/views/examples/
scroll_view_example.h 12 #include "ui/views/controls/button/button.h"
32 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE;
widget_example.h 12 #include "ui/views/controls/button/button.h"
29 // Button tags used to identify various commands.
34 CLOSE_WIDGET, // Close the sender button's widget.
37 // Construct a button with the specified |label| and |tag| in |container|.
44 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE;
  /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...]
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/testapp/src/com/android/uiautomator/tests/cts/testapp/
Test1DetailFragment.java 27 import android.widget.Button;
33 private Button mSubmitButton;
54 mSubmitButton = (Button) rootView.findViewById(R.id.test1SubmitButton);
57 mSubmitButton.setOnClickListener(new Button.OnClickListener() {
  /packages/apps/Mms/src/com/android/mms/ui/
ConfirmRateLimitActivity.java 30 import android.widget.Button;
51 Button button = (Button) findViewById(R.id.btn_yes); local
52 button.setOnClickListener(new OnClickListener() {
58 button = (Button) findViewById(R.id.btn_no);
59 button.setOnClickListener(new OnClickListener() {
  /packages/apps/Settings/src/com/android/settings/wifi/
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() {
  /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);
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulController.java 27 import android.widget.Button;
41 // Watch for button clicks.
42 Button button = (Button)findViewById(R.id.schedule); local
43 button.setOnClickListener(mScheduleListener);
  /development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
LiveButton.java 25 import android.widget.Button;
29 * the button animates into its pressed state and animates back out of it, overshooting
46 final Button clickMeButton = (Button) findViewById(R.id.clickMe);
  /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);

Completed in 1691 milliseconds

1 2 3 4 5 6 78 91011>>