HomeSort by relevance Sort by last modified time
    Searched full:button (Results 301 - 325 of 6090) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/TransitionTests/res/layout/
fading_test_simple.xml 9 <Button
15 <Button
two_buttons.xml 7 <Button
11 <Button
  /frameworks/ml/bordeaux/service/res/layout/
lava_service_binding.xml 30 <Button android:id="@+id/startService"
34 </Button>
36 <Button android:id="@+id/stopService"
40 </Button>
42 <Button android:id="@+id/bind"
46 </Button>
48 <Button android:id="@+id/unbind"
51 </Button>
  /frameworks/opt/photoviewer/sample/res/layout/
activity_main.xml 6 <Button
7 android:id="@+id/button"
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
ButtonBarItem.java 22 import android.widget.Button;
98 Button button = buttonItem.createButton(layout); local
99 layout.addView(button);
110 throw new UnsupportedOperationException("Cannot add non-button item to Button Bar");
119 for (ButtonItem button : mButtons) {
120 final ItemHierarchy item = button.findItemById(id);
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/
RequireScrollMixinTest.java 35 import android.widget.Button;
131 assertEquals("More button should be visible",
133 assertEquals("Next button should be hidden",
140 assertEquals("More button should be hidden",
142 assertEquals("Next button should be visible",
149 final Button button = new Button(application); local
150 button.setText("OriginalLabel");
153 button, "TestMoreLabel", wrappedListener)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
StyleChooser.java 47 final ImageButton button = new ImageButton(context); local
48 button.setScaleType(ScaleType.CENTER_CROP);
49 button.setLayoutParams(lp);
50 button.setBackgroundResource(android.R.color.transparent);
51 mIconButton.add(button);
53 button.setOnClickListener(new View.OnClickListener() {
59 mLinearLayout.addView(button);
67 button.setImageBitmap(bmap);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
AcceptDenyDialog.java 34 * A dialog to display a title, a message, and/or an icon with a positive and a negative button.
36 * <p>The buttons are hidden away unless there is a listener attached to the button. Since there's
49 /** Positive button in the button panel. */
51 /** Negative button in the button panel. */
54 * Click listener for the positive button. Positive button should hide if this is <code>null
59 * Click listener for the negative button. Negative button should hide if this is <code>nul
    [all...]
  /packages/experimental/FillService/res/layout/
activity_main.xml 14 <Button
19 </Button>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
metadata.xml 9 <Button android:text="Button" android:id="@+id/button1"/>
unwrap-expected-unwrap1.xml 14 <Button
15 android:id="@+id/button"
unwrap-expected-unwrap2.xml 14 <Button
15 android:id="@+id/button"
unwrap-expected-unwrap3.xml 13 <Button
14 android:id="@+id/button"
  /development/samples/ApiDemos/res/layout/
pointer_types.xml 38 <Button
45 <Button
52 <Button
59 <Button
66 <Button
73 <Button
80 <Button
87 <Button
94 <Button
101 <Button
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityButtonController.java 30 * Controller for the accessibility button within the system's navigation area
32 * This class may be used to query the accessibility button's state and register
33 * callbacks for interactions with and state changes to the accessibility button when
44 * <strong>Note:</strong> On device implementations where the accessibility button is
47 * this button to another accessibility service or feature. In each of these cases, a
50 * method will be invoked to provide notifications of changes in the accessibility button's
67 * Retrieves whether the accessibility button in the system's navigation area is
75 * @return {@code true} if the accessibility button in the system's navigation area is
82 Slog.w(LOG_TAG, "Failed to get accessibility button availability.", re);
90 * changes callbacks related to the accessibility button
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 52 // LinearLayout(H:[Button Button])
64 * LinearLayout(H:[Button Button])
65 * LinearLayout(H:[Button Button Button])
85 * LinearLayout(H:[Button Button])
106 * LinearLayout(H:[Button Button]
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 24 import android.widget.Button;
74 assertTrue("second button should be more than max scroll away from first",
84 final Button topButton = (Button) getChildOfItem(0, 0);
89 if (counter > 5) fail("couldn't reach next button within " + counter + " downs");
92 assertFalse("after " + counter + " downs, top button not visible, should not have focus",
94 assertFalse("after " + counter + " downs, neither top button nor botom button visible, nothng within first list " +
97 assertTrue("after " + counter + " downs, top button still visible, should have focus",
110 // at this point, the second button is visible on screen
    [all...]
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
AnimatedVectorDrawableTest.java 24 import android.widget.Button;
70 Button button = new Button(this); local
71 button.setWidth(300);
72 button.setHeight(300);
73 button.setLayerType(layerTypes[j], null);
74 button.setBackgroundResource(icon[i]);
75 AnimatedVectorDrawable d = (AnimatedVectorDrawable) button.getBackground();
91 container.addView(button);
    [all...]
VectorDrawable01.java 23 import android.widget.Button;
61 final Button []bArray = new Button[icon.length];
81 Button button = new Button(this); local
82 bArray[i] = button;
83 button.setWidth(200);
84 button.setBackgroundResource(icon[i]);
85 container.addView(button);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalServiceActivities.java 30 import android.widget.Button;
50 // Watch for button clicks.
51 Button button = (Button)findViewById(R.id.start); local
52 button.setOnClickListener(mStartListener);
53 button = (Button)findViewById(R.id.stop);
54 button.setOnClickListener(mStopListener);
164 // Watch for button clicks
165 Button button = (Button)findViewById(R.id.bind); local
    [all...]
  /packages/experimental/StrictModeTest/res/layout/
main.xml 82 <Button
89 <Button
96 <Button
103 <Button
110 <Button
117 <Button
124 <Button
131 <Button
138 <Button
145 <Button
    [all...]
  /frameworks/native/include/android/
keycodes.h 273 /** A Button key.
274 * On a game controller, the A button should be either the button labeled A
275 * or the first button on the bottom row of controller buttons. */
277 /** B Button key.
278 * On a game controller, the B button should be either the button labeled B
279 * or the second button on the bottom row of controller buttons. */
281 /** C Button key.
282 * On a game controller, the C button should be either the button labeled
    [all...]
  /packages/apps/ExactCalculator/res/layout/
pad_advanced_3x5.xml 27 <Button
36 <Button
44 <Button
52 <Button
60 <Button
70 <Button
78 <Button
88 <Button
96 <Button
106 <Button
    [all...]
pad_advanced_4x4.xml 27 <Button
36 <Button
44 <Button
52 <Button
60 <Button
70 <Button
78 <Button
88 <Button
96 <Button
106 <Button
    [all...]
pad_advanced_5x3.xml 27 <Button
36 <Button
44 <Button
52 <Button
62 <Button
70 <Button
80 <Button
88 <Button
98 <Button
106 <Button
    [all...]

Completed in 2160 milliseconds

<<11121314151617181920>>