HomeSort by relevance Sort by last modified time
    Searched refs:button1 (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/base/core/tests/coretests/src/android/view/
IncludeTest.java 41 final View button1 = activity.findViewById(R.id.included_button); local
42 assertNotNull("The layout include_button was not included", button1);
52 final View button1 = activity.findViewById(R.id.included_button); local
56 button1.getLayoutParams().width != button2.getLayoutParams().width);
58 button1.getLayoutParams().height != button2.getLayoutParams().height);
64 final View button1 = activity.findViewById(R.id.included_button_visibility); local
66 assertEquals("Included button should be invisible", View.INVISIBLE, button1.getVisibility());
73 final View button1 = activity.findViewById(R.id.included_button_with_size); local
75 final ViewGroup.LayoutParams lp = button1.getLayoutParams();
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
DelayedTransition.java 39 final Button button1 = (Button) findViewById(R.id.button1); local
42 button1.setOnClickListener(new View.OnClickListener() {
45 int buttonWidth = button1.getWidth();
49 button1.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,
56 button1.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
HierarchicalMove.java 46 buttons[1] = (Button) findViewById(R.id.button1);
InterruptionTest.java 58 changeBounds2.addTarget(R.id.button1);
  /external/chromium_org/tools/stats_viewer/
OpenDialog.Designer.cs 37 this.button1 = new System.Windows.Forms.Button();
57 // button1
59 this.button1.Location = new System.Drawing.Point(108, 61);
60 this.button1.Name = "button1";
61 this.button1.Size = new System.Drawing.Size(75, 23);
62 this.button1.TabIndex = 2;
63 this.button1.Text = "OK";
64 this.button1.UseVisualStyleBackColor = true;
65 this.button1.Click += new System.EventHandler(this.button1_Click);
86 private System.Windows.Forms.Button button1; field in class:StatsViewer.OpenDialog
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListViewHeightTest.java 51 final Button button1 = (Button) mActivity.findViewById(R.id.button1); local
62 button1.performClick();
66 assertTrue("List not be visible after clicking button1", list.isShown());
ListViewHeight.java 47 mButton1 = findViewById(R.id.button1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/
GridModelTest.java 55 targetNode.add(TestNode.create(FQCN_BUTTON).id("@+id/Button1"));
69 TestNode b1 = TestNode.create(FQCN_BUTTON).id("@+id/Button1");
130 " android:id=\"@+id/button1\"\n" +
169 TestNode button1 = TestNode.findById(targetNode, "@+id/button1"); local
177 assertNotNull(button1);
182 button1.bounds(new Rect(90, 10, 100, 40));
197 // Delete button1
198 button1.getParent().removeChild(button1);
308 TestNode button1 = TestNode.findById(targetNode, "@+id\/button1"); local
629 TestNode button1 = TestNode.findById(targetNode, "@+id\/button1"); local
721 TestNode button1 = TestNode.findById(targetNode, "@+id\/button1"); local
814 TestNode button1 = TestNode.findById(targetNode, "@+id\/button1"); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/relative/
DeletionHandlerTest.java 43 " android:id=\"@+id/button1\"\n" +
53 " android:layout_alignBaseline=\"@+id/button1\"\n" +
54 " android:layout_alignBottom=\"@+id/button1\"\n" +
55 " android:layout_toRightOf=\"@+id/button1\"\n" +
91 " android:id=\"@+id/button1\"\n" +
102 " android:layout_alignBaseline=\"@+id/button1\"\n" +
103 " android:layout_alignBottom=\"@+id/button1\"\n" +
104 " android:layout_toRightOf=\"@+id/button1\"\n" +
124 " android:id=\"@+id/button1\"\n" +
136 " android:layout_below=\"@+id/button1\"\n"
322 TestNode button1 = TestNode.findById(targetNode, "@+id\/button1"); local
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 34 mButton = (Button) findViewById(R.id.button1);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLOfButtons1.java 40 mFirstButton = (Button) findViewById(R.id.button1);
LLOfTwoFocusableInTouchMode.java 41 mButton1 = findViewById(R.id.button1);
BaselineAlignmentCenterGravityTest.java 43 mButton1 = (Button) activity.findViewById(R.id.button1);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TransformsAndAnimationsActivity.java 35 Button button1; field in class:TransformsAndAnimationsActivity
58 button1 = (Button) findViewById(R.id.button1);
129 button1.startAnimation(alphaAnim);
151 button1.setLayerType(layerType, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 173 * Button1 > LinearLayout3(V: [button]) < Button2
183 MockXmlNode button1 = createButton(); local
184 button1.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/button1");
211 button1.addAttributes(SdkConstants.NS_RESOURCES, "layout_toLeftOf", "@+id/linear3");
221 linear4.addAttributes(SdkConstants.NS_RESOURCES, "layout_toRightOf", "@+id/button1");
228 button1, button2, linear1, linear2, linear3, linear4, linear5 } );
UiElementPullParserTest.java 102 * <Button android:name="button1" android:text="button1text"/>
109 MockXmlNode button1 = new MockXmlNode(null /* namespace */, "Button", Node.ELEMENT_NODE, local
111 button1.addAttributes(SdkConstants.NS_RESOURCES, "name", "button1");
112 button1.addAttributes(SdkConstants.NS_RESOURCES, "text", "button1text");
119 button1Map.put("name", "button1");
145 Node.ELEMENT_NODE, new MockXmlNode[] { button1, relative });
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 697 return (mPresentation.button1 != null) && (mPresentation.button2 != null) &&
701 assertTrue(mPresentation.button1.isFocusable() && mPresentation.button2.isFocusable() &&
712 mPresentation.button1.setOnFocusChangeListener(listener);
720 return mPresentation.button1.hasWindowFocus();
724 assertFalse(mPresentation.button1.isInTouchMode());
735 return mPresentation.button1.isInTouchMode();
742 if (v == mPresentation.button1) {
747 mPresentation.button1.setOnClickListener(clickListener);
750 injectTouchEvent(presentationWindow, mPresentation.button1.getX() +
751 mPresentation.button1.getWidth() / 2
813 public Button button1 = null; field in class:WindowTest.ProjectedPresentation
    [all...]
  /packages/services/Telephony/tests/src/com/android/phone/tests/
OtaspTestActivity.java 70 mButton = (Button) findViewById(R.id.button1);
208 case R.id.button1:
209 Log.i(LOG_TAG, "onClick: button1...");
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PickFragment.java 61 mPick = (Button) mContainer.findViewById(android.R.id.button1);
  /frameworks/base/services/core/java/com/android/server/am/
BaseErrorDialog.java 62 Button b = (Button)findViewById(R.id.button1);
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views_unittest.cc 200 const char kButton1ASCII[] = "Button1";
207 views::LabelButton* button1 = new views::LabelButton( local
209 button1->SetStyle(views::Button::STYLE_BUTTON);
210 contents->AddChildView(button1);
226 button1->RequestFocus();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenModePanel.java 636 final ImageView button1 = (ImageView) row.findViewById(android.R.id.button1); local
637 button1.setOnClickListener(new OnClickListener() {
660 button1.setVisibility(VISIBLE);
663 button1.setEnabled(mBucketIndex > 0);
667 button1.setEnabled(span > MIN_BUCKET_MINUTES * MINUTES_MS);
673 button1.setAlpha(button1.isEnabled() ? 1f : .5f);
676 button1.setVisibility(GONE);
683 Interaction.register(button1, mInteractionCallback)
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityWindowQueryTest.java 91 final AccessibilityNodeInfo button1 = uiAutomation.getRootInActiveWindow() local
93 "com.android.cts.accessibilityservice:id/button1").get(0);
102 button1.performAction(AccessibilityNodeInfo.ACTION_CLICK);
163 final AccessibilityNodeInfo button1 = uiAutomation.getRootInActiveWindow() local
165 "com.android.cts.accessibilityservice:id/button1").get(0);
174 button1.performAction(AccessibilityNodeInfo.ACTION_CLICK);
218 final AccessibilityNodeInfo button1 = uiAutomation.getRootInActiveWindow() local
220 "com.android.cts.accessibilityservice:id/button1").get(0);
229 button1.performAction(AccessibilityNodeInfo.ACTION_CLICK);
742 button.setText(R.string.button1);
    [all...]
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
MainActivity.java 75 mButton = (Button) findViewById(R.id.button1);
  /developers/build/prebuilts/gradle/PermissionRequest/Application/tests/src/com/example/android/permissionrequest/test/
SampleTests.java 80 clickDialogButton(dialogFragment, android.R.id.button1);

Completed in 724 milliseconds

1 2 3