HomeSort by relevance Sort by last modified time
    Searched full:button (Results 76 - 100 of 1669) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/ApiDemos/res/layout/
relative_layout_2.xml 49 The OK button goes below the EditText field.
52 The OK button comes first so the Cancel button
53 can be specified relative to the OK button.
55 <Button
65 The Cancel button is aligned with the top of
66 the OK button and positioned to the left of it.
67 Since the OK button has a left margin of 10, there
70 <Button
foreground_service_controller.xml 30 <Button android:id="@+id/start_foreground"
34 </Button>
36 <Button android:id="@+id/start_background"
40 </Button>
42 <Button android:id="@+id/stop"
45 </Button>
remote_service_binding.xml 30 <Button android:id="@+id/bind"
34 </Button>
36 <Button android:id="@+id/unbind"
39 </Button>
41 <Button android:id="@+id/kill"
44 </Button>
alert_dialog.xml 26 <Button android:id="@+id/two_buttons"
29 <Button android:id="@+id/two_buttons2"
32 <Button android:id="@+id/select_button"
35 <Button android:id="@+id/progress_button"
38 <Button android:id="@+id/radio_button"
41 <Button android:id="@+id/checkbox_button"
44 <Button android:id="@+id/checkbox_button2"
47 <Button android:id="@+id/text_entry_button"
  /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);
SendResult.java 28 import android.widget.Button;
52 // Watch for button clicks.
53 Button button = (Button)findViewById(R.id.corky); local
54 button.setOnClickListener(mCorkyListener);
55 button = (Button)findViewById(R.id.violet);
56 button.setOnClickListener(mVioletListener);
ContactsFilter.java 28 import android.widget.Button;
44 // Watch for button clicks.
45 Button button = (Button)findViewById(R.id.go); local
46 button.setOnClickListener(mGoListener);
LocalSample.java 28 import android.widget.Button;
44 // Watch for button clicks.
45 Button button = (Button)findViewById(R.id.go); local
46 button.setOnClickListener(mGoListener);
  /external/webkit/WebCore/manual-tests/
onbeforeunload-close_with_javascript.html 16 <li>Click the "Open" button below.
17 <li>In the window that opens, click the "Close" button.
22 After the close button is clicked, you should see a dialog that reads:</p>
28 <p id="success" style="background-color:palegreen; padding:3px;">You should see the same dialog if you click the "Close" button in the main window.
32 No dialog (as described above) after clicking the "Close" button in the newly opened window, or in the main window.
36 <input type=button value="Open Window" onclick="openWindow()"><br>
37 <input type=button value="Close Window" onclick="window.close();"><br>
38 <p>Click the Open Window button. Once the new window is opened, close the new window by clicking the Close Window button (not the browser's close window icon).</p>
update-empty-popup.html 10 1. Click on the empty popup button.<br>
11 2. Click on the Test button.
15 The popup button will change to display the word SUCCESS.
19 The popup button will become wider but will not display any text. Clicking the popup
25 <input type="button" onclick='document.getElementById("select").add(new Option("SUCCESS"))' value="Test">
audio-volume.html 23 <input type="button" value="Load movie" onclick="load()">
25 <input type="button" value="volume=1.0" onclick="setVolume(1.0)">
26 <input type="button" value="volume=0.05" onclick="setVolume(0.05)">
invalid-mouse-event.html 6 <li>Click the Start button.</li>
11 <button onclick="window.open('invalid-mouse-event.html?2', '', '');">Start</button>
new-window-subresource-crash.html 15 click the button below to test. The test only works in Safari, because
19 <button onclick="test()">Crash</button>
  /frameworks/base/core/java/android/widget/
RadioButton.java 25 * A radio button is a two-states button that can be either checked or
26 * unchecked. When the radio button is unchecked, the user can press or click it
28 * button cannot be unchecked by the user once checked.
34 * a radio group, checking one radio button unchecks all the others.</p>
40 * {@link android.R.styleable#Button Button Attributes},
62 * If the radio button is already checked, this method will not toggle the radio button.
  /frameworks/base/core/tests/coretests/res/layout/
framelayout_gravity.xml 22 <Button android:id="@+id/left"
28 <Button android:id="@+id/right"
34 <Button android:id="@+id/center_horizontal"
40 <Button android:id="@+id/left_center_vertical"
46 <Button android:id="@+id/right_center_vertical"
52 <Button android:id="@+id/center"
58 <Button android:id="@+id/left_bottom"
64 <Button android:id="@+id/right_bottom"
70 <Button android:id="@+id/center_horizontal_bottom"
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
RequestFocusTest.java 26 import android.widget.Button;
35 private Button mTopLeftButton;
36 private Button mBottomLeftButton;
37 private Button mTopRightButton;
38 private Button mBottomRightButton;
51 mTopLeftButton = (Button) a.findViewById(R.id.topLeftButton);
52 mBottomLeftButton = (Button) a.findViewById(R.id.bottomLeftButton);
53 mTopRightButton = (Button) a.findViewById(R.id.topRightButton);
54 mBottomRightButton = (Button) a.findViewById(R.id.bottomRightButton);
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/view/
MutateDrawable.java 22 import android.widget.Button;
32 Button ok = new Button(this);
37 Button cancel = new Button(this);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLEditTextThenButton.java 23 import android.widget.Button;
29 private Button mButton;
41 mButton = (Button) findViewById(R.id.button);
52 public Button getButton() {
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithHeaders.java 22 import android.widget.Button;
43 Button header = new Button(this);
49 Button footer = new Button(this);
  /sdk/layoutopt/samples/
inefficient_weight.xml 9 <Button
22 <Button
37 <Button
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 23 import android.widget.Button;
41 Button button = (Button) findViewById(R.id.toggle); local
42 button.setOnClickListener(new Button.OnClickListener() {
ProgressBar3.java 26 import android.widget.Button;
48 Button button = (Button) findViewById(R.id.showIndeterminate); local
49 button.setOnClickListener(new View.OnClickListener() {
55 button = (Button) findViewById(R.id.showIndeterminateNoTitle);
56 button.setOnClickListener(new View.OnClickListener() {
  /external/junit/src/junit/awtui/
AboutDialog.java 3 import java.awt.Button;
27 Button button= new Button("Close"); local
28 button.addActionListener(
61 add(button, constraintsButton1);
  /packages/apps/Phone/res/values/
attrs.xml 19 <!-- The enable button text. -->
21 <!-- The disable button text. -->
23 <!-- The change / update button text. -->
25 <!-- The confirm button mode. -->
27 <!-- Traditional single action "ok" button. -->
29 <!-- Two state "enable/disable" button. -->

Completed in 90 milliseconds

1 2 34 5 6 7 8 91011>>