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

1 2 3 4 56 7 8 91011>>

  /packages/apps/IM/src/com/android/im/app/
SimpleInputActivity.java 25 import android.widget.Button;
40 Button mBtnOk;
41 Button mBtnCancel;
73 mBtnOk = (Button) findViewById(R.id.btnOk);
74 mBtnOk.setOnClickListener(new Button.OnClickListener() {
86 mBtnCancel = (Button) findViewById(R.id.btnCancel);
87 mBtnCancel.setOnClickListener(new Button.OnClickListener() {
  /packages/apps/Stk/res/values/
strings.xml 20 <!-- Menu button option for ending current SIM session -->
22 <!-- Menu button option for requesting additional help information -->
24 <!-- Menu button option to navigate back to the previous screen -->
30 <!-- OK button used to confirm a message dialog -->
32 <!-- Cancel button used to dismiss a message dialog and terminate the current SIM session-->
34 <!-- Yes button, used on a Yes/No confirmation screen -->
36 <!-- No button, used on a Yes/No confirmation screen -->
  /frameworks/base/core/java/android/widget/
ImageButton.java 30 * Displays a button with an image (instead of text) that can be pressed
32 * {@link android.widget.Button}, with the standard button background
33 * that changes color during different button states. The image on the surface
34 * of the button is defined either by the {@code android:src} attribute in the
38 * <p>To remove the standard button background image, define your own
40 * <p>To indicate the different button states (focused, selected, etc.), you can
57 * based on the state of the button and the corresponding images
61 * evaluated in order. This is why the "normal" button image comes last, because
67 * See {@link android.R.styleable#ImageView Button Attributes}
    [all...]
  /packages/apps/Bluetooth/res/layout/
testactivity_main.xml 32 <Button android:id="@+id/insert_record"
51 <Button android:id="@+id/delete_record"
69 <Button android:id="@+id/update_record"
87 <Button android:id="@+id/ack_record"
94 <Button android:id="@+id/deleteAll_record"
97 android:text="@string/deleteAll_record"></Button>
99 <Button android:id="@+id/start_server"
102 android:text="@string/start_server"></Button>
104 <Button android:id="@+id/notify_server"
107 android:text="@string/notify_server"></Button>
    [all...]
  /cts/tests/src/android/widget/cts/
ExpandableListWithHeaders.java 20 import android.widget.Button;
45 Button header = new Button(this);
51 Button footer = new Button(this);
  /external/webkit/WebCore/css/
mediaControlsQuickTime.css 42 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
43 -webkit-box-ordinal-group: 2; /* Before the fullscreen button */
50 audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-button {
120 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
125 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
130 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-fullscreen-button
    [all...]
CSSValueKeywords.in 555 push-button
556 square-button
557 button
558 button-bevel
559 default-button
560 inner-spin-button
561 list-button
564 media-fullscreen-button
565 media-mute-button
566 media-play-button
    [all...]
mediaControlsQt.css 53 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
62 audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-button {
98 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
109 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
120 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-fullscreen-button {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
PreDrawListener.java 26 import android.widget.Button;
61 Button b = new Button(this.getContext());
80 Button mGoButton = (Button) findViewById(R.id.go);
  /frameworks/base/core/tests/coretests/src/android/widget/
RadioGroupPreCheckedTest.java 40 assertTrue("The first radio button should be checked", radio.isChecked());
43 assertEquals("The first radio button should be checked", R.id.value_one,
56 assertFalse("The first radio button should not be checked", old.isChecked());
57 assertTrue("The second radio button should be checked", radio.isChecked());
60 assertEquals("The second radio button should be checked", R.id.value_two,
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListWithHeaders.java 21 import android.widget.Button;
45 Button header = new Button(this);
51 Button footer = new Button(this);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemISVAndButton.java 22 import android.widget.Button;
29 * Each item is an internal selection view, a button, and some filler
58 final Button topButton = new Button(context);
61 topButton.setText("button " + position + ")");
  /development/simulator/app/assets/android-dream/
layout.xml 19 <button keyCode="1" src="key.png" x="468" y="276"/>
20 <button keyCode="q" src="key.png" x="468" y="312"/>
21 <button keyCode="power" src="power.png" x="7" y="66"/>
22 <button keyCode="volume-up" src="volume_up.png" x="407" y="274"/>
23 <button keyCode="volume-down" src="volume_down.png" x="407" y="324"/>
25 <button keyCode="home" src="home.png" x="93" y="602"/>
26 <button keyCode="back" src="back.png" x="331" y="602"/>
27 <button keyCode="dpad-up" src="arrow_up.png" x="185" y="608"/>
28 <button keyCode="dpad-down" src="arrow_down.png" x="185" y="669"/>
29 <button keyCode="dpad-left" src="arrow_left.png" x="155" y="610"/
    [all...]
  /external/proguard/src/proguard/gui/
TabbedPane.java 68 * @param title the title that will be used in the tab button.
80 JToggleButton button = new JToggleButton(title); local
82 // Let the button react on the mouse press, instead of waiting for the
84 button.setModel(new JToggleButton.ToggleButtonModel()
117 // Switch to the tab on a button press.
118 button.addActionListener(new ActionListener()
126 // Only one button can be selected at the same time.
127 buttonGroup.add(button);
129 // If this is the first tab, make sure its button is selected.
132 button.setSelected(true)
224 JToggleButton button = (JToggleButton)getComponent(index+1); local
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 114 event.button.button = 3;
115 event.button.x = lastMousePositionX;
116 event.button.y = lastMousePositionY;
117 event.button.window = GTK_WIDGET(view)->window;
131 static void updateClickCount(int button)
133 // FIXME: take the last clicked button number and the time of last click into account.
134 if (lastClickPositionX != lastMousePositionX || lastClickPositionY != lastMousePositionY || currentEventButton != button)
166 event.button.button = 1
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 30 import android.widget.Button;
46 // Watch for button clicks.
47 Button button = (Button)findViewById(R.id.fade_animation); local
48 button.setOnClickListener(mFadeListener);
49 button = (Button)findViewById(R.id.zoom_animation);
50 button.setOnClickListener(mZoomListener);
  /frameworks/base/core/tests/coretests/res/layout/
linear_layout_grid.xml 32 <Button
38 <Button
44 <Button
57 <Button
63 <Button
69 <Button
82 <Button
88 <Button
94 <Button
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
VerticalFocusSearchTest.java 26 import android.widget.Button;
39 private Button mTopWide;
40 private Button mMidSkinny1Left;
41 private Button mMidSkinny2Right;
42 private Button mBottomWide;
139 assertNull("going down from bottom button should have no next focus.",
142 assertNull("going left from bottom button should have no next focus.",
145 assertNull("going right from bottom button should have no next focus.",
148 assertEquals("going up from bottom button should go to mMidSkinny2Right.",
  /frameworks/base/tests/SslLoad/src/com/android/sslload/
SslLoad.java 35 import android.widget.Button;
48 private Button button; field in class:SslLoad
59 button = new Button(this);
60 button.setText("GO");
61 button.setOnClickListener(this);
63 setContentView(button);
78 button.setText(running ? "STOP" : "GO");
  /packages/apps/Browser/src/com/android/browser/
BrowserHomepagePreference.java 23 import android.widget.Button;
53 // Now the EditText has a parent. Add a button to set to the current
56 Button button = new Button(getContext()); local
57 button.setText(R.string.pref_use_current);
58 button.setOnClickListener(new View.OnClickListener() {
66 parent.addView(button, ViewGroup.LayoutParams.WRAP_CONTENT,
98 * when the user clicks the "Use current page" button.
  /development/samples/ApiDemos/res/layout/
device_admin_sample.xml 33 <Button android:id="@+id/enable"
37 </Button>
39 <Button android:id="@+id/disable"
42 </Button>
65 <Button android:id="@+id/set_password"
69 </Button>
82 <Button android:id="@+id/reset_password"
86 </Button>
105 <Button android:id="@+id/force_lock"
109 </Button>
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_mouse.h 51 * The current button state is returned as a button bitmask, which can
59 * The current button state is returned as a button bitmask, which can
113 Button 1: Left mouse button
114 Button 2: Middle mouse button
115 Button 3: Right mouse button
    [all...]
  /packages/apps/Phone/res/layout/
otacall_card.xml 6 (4) Button used for the final success/failure screen -->
107 <!-- "Speaker" button -->
119 <!-- "Activate" button -->
120 <Button android:id="@+id/otaActivateButton"
124 <!-- "Skip" button --> <!-- TODO: borrowing another button's label for now because I missed the localization deadline for adding a @string/ota_skip -->
125 <Button android:id="@+id/otaSkipButton"
136 <!-- "End" button -->
137 <Button android:id="@+id/otaEndButton"
142 <!-- (4) OTA Success/Failure button --
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_mouse.h 51 * The current button state is returned as a button bitmask, which can
59 * The current button state is returned as a button bitmask, which can
113 Button 1: Left mouse button
114 Button 2: Middle mouse button
115 Button 3: Right mouse button
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_mouse.h 51 * The current button state is returned as a button bitmask, which can
59 * The current button state is returned as a button bitmask, which can
113 Button 1: Left mouse button
114 Button 2: Middle mouse button
115 Button 3: Right mouse button
    [all...]

Completed in 190 milliseconds

1 2 3 4 56 7 8 91011>>