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

1 2

  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
BigEditTextActivityNonScrollablePanScanTests.java 38 View rootView = ((BigEditTextActivityNonScrollablePanScan) mTargetActivity).getRootView();
41 assertNotNull(rootView);
44 destructiveCheckImeInitialState(rootView, servedView);
46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
BigEditTextActivityNonScrollableResizeTests.java 37 View rootView = ((BigEditTextActivityNonScrollableResize) mTargetActivity).getRootView();
40 assertNotNull(rootView);
43 destructiveCheckImeInitialState(rootView, servedView);
45 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
BigEditTextActivityScrollablePanScanTests.java 37 View rootView = ((BigEditTextActivityScrollablePanScan) mTargetActivity).getRootView();
40 assertNotNull(rootView);
43 destructiveCheckImeInitialState(rootView, servedView);
45 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
BigEditTextActivityScrollableResizeTests.java 38 View rootView = ((BigEditTextActivityScrollableResize) mTargetActivity).getRootView();
41 assertNotNull(rootView);
44 destructiveCheckImeInitialState(rootView, servedView);
46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
BottomEditTextActivityPanScanTests.java 38 View rootView = ((BottomEditTextActivityPanScan) mTargetActivity).getRootView();
41 assertNotNull(rootView);
44 destructiveCheckImeInitialState(rootView, servedView);
46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
BottomEditTextActivityResizeTests.java 38 View rootView = ((BottomEditTextActivityResize) mTargetActivity).getRootView();
41 assertNotNull(rootView);
44 destructiveCheckImeInitialState(rootView, servedView);
46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
OneEditTextActivityNotSelectedTests.java 39 View rootView = ((OneEditTextActivityNotSelected) mTargetActivity).getRootView();
42 assertNotNull(rootView);
45 destructiveCheckImeInitialState(rootView, servedView);
47 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
OneEditTextActivitySelectedTests.java 42 View rootView = ((OneEditTextActivitySelected) mTargetActivity).getRootView();
45 assertNotNull(rootView);
48 destructiveCheckImeInitialState(rootView, servedView);
50 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
ImfBaseTestCase.java 113 public void destructiveCheckImeInitialState(View rootView, View servedView) {
117 assertTrue(destructiveCheckImeUp(rootView, servedView));
119 assertFalse(destructiveCheckImeUp(rootView, servedView));
123 public boolean destructiveCheckImeUp(View rootView, View servedView) {
127 origHeight = rootView.getHeight();
133 newHeight = rootView.getHeight();
136 newHeight = rootView.getHeight();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 89 CanvasViewInfo rootView = CanvasViewInfo.create(root, layoutlib5).getFirst();
90 assertNotNull(rootView);
91 assertEquals("LinearLayout", rootView.getName());
92 assertEquals(new Rectangle(10, 10, 89, 89), rootView.getAbsRect());
93 assertEquals(new Rectangle(10, 10, 89, 89), rootView.getSelectionRect());
94 assertNull(rootView.getParent());
95 assertSame(rootView.getUiViewNode(), rootNode);
96 assertEquals(2, rootView.getChildren().size());
97 CanvasViewInfo childView1 = rootView.getChildren().get(0);
98 CanvasViewInfo childView2 = rootView.getChildren().get(1)
    [all...]
SelectionManagerTest.java 56 CanvasViewInfo rootView = CanvasViewInfo.create(root, true /* layoutlib5 */).getFirst();
57 assertNotNull(rootView);
59 manager.selectMultiple(Arrays.asList(rootView, rootView.getChildren().get(0), rootView
77 manager.selectSingle(rootView);
80 assertSame(rootView, manager.getSelections().get(0).getViewInfo());
82 manager.selectMultiple(Arrays.asList(rootView, rootView.getChildren().get(0), rootView
    [all...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test6DetailFragment.java 45 View rootView = inflater.inflate(R.layout.test6_detail_fragment, container, false);
46 WebView wv = (WebView) rootView.findViewById(R.id.test6WebView);
48 return rootView;
Test1DetailFragment.java 50 View rootView = inflater.inflate(R.layout.test1_detail_fragment, container, false);
52 ((EditText) rootView.findViewById(R.id.test1TextField)).setText(mItem.mName);
54 mSubmitButton = (Button) rootView.findViewById(R.id.test1SubmitButton);
55 mEditText = (EditText) rootView.findViewById(R.id.test1TextField);
78 return rootView;
Test5DetailFragment.java 55 View rootView = inflater.inflate(R.layout.test5_detail_fragment, container, false);
58 Spinner spinner = (Spinner) rootView.findViewById(R.id.test_5_spinner);
60 ImageButton imageButton = (ImageButton) rootView.findViewById(R.id.test_5_imageButton);
64 SeekBar seekBar = (SeekBar) rootView.findViewById(R.id.test_5_seekBar);
67 CheckBox checkbox = (CheckBox) rootView.findViewById(R.id.test_5_checkBox);
71 Button button = (Button) rootView.findViewById(R.id.test_5_button1);
95 return rootView;
Test3DetailFragment.java 89 View rootView = inflater.inflate(R.layout.test3_detail_fragment, container, false);
90 mTextClock = (TextView) rootView.findViewById(R.id.test3ClockTextView);
91 mSubmitButton = (Button) rootView.findViewById(R.id.test3SubmitButton);
92 mEditText = (EditText) rootView.findViewById(R.id.test3TextField);
132 return rootView;
Test4DetailFragment.java 67 View rootView = inflater.inflate(R.layout.test4_detail_fragment, container, false);
72 return rootView;
81 mViewPager = (ViewPager) rootView.findViewById(R.id.test_4_detail_container);
103 return rootView;
TestGenericDetailFragment.java 54 View rootView = inflater.inflate(R.layout.test_results_detail_fragment, container, false);
56 ((TextView) rootView.findViewById(R.id.testResultsTextView)).setText(mItem.mName);
61 rootView.setOnTouchListener(new View.OnTouchListener() {
94 return rootView;
Test2DetailFragment.java 61 View rootView = inflater.inflate(R.layout.test2_detail_fragment, container, false);
63 mButton1 = (Button) rootView.findViewById(R.id.test2button1);
64 mButton2 = (Button) rootView.findViewById(R.id.test2button2);
65 mButton3 = (Button) rootView.findViewById(R.id.test2button3);
66 mDynaButton = (Button) rootView.findViewById(R.id.test2dynaButton);
151 return rootView;
  /frameworks/base/core/java/android/ddm/
DdmHandleViewDebug.java 124 View rootView = getRootView(in);
125 if (rootView == null) {
131 return dumpHierarchy(rootView, in);
133 return captureLayers(rootView);
138 final View targetView = getTargetView(rootView, in);
146 return captureView(rootView, targetView);
148 return dumpDisplayLists(rootView, targetView);
150 return profileView(rootView, targetView);
152 return invokeViewMethod(rootView, targetView, in);
154 return setLayoutParameter(rootView, targetView, in)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java 94 View rootView = mInflater.inflate(R.layout.app_ops_summary,
97 mRootView = rootView;
101 mViewPager = (ViewPager) rootView.findViewById(R.id.pager);
105 PagerTabStrip tabs = (PagerTabStrip) rootView.findViewById(R.id.tabs);
111 ((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
114 return rootView;
AppViewHolder.java 16 public View rootView;
30 holder.rootView = convertView;
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ScreenSlidePageFragment.java 68 ViewGroup rootView = (ViewGroup) inflater
72 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
75 return rootView;
  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
MainActivity.java 154 View rootView = inflater.inflate(R.layout.fragment_section_launchpad, container, false);
157 rootView.findViewById(R.id.demo_collection_button)
167 rootView.findViewById(R.id.demo_external_activity)
183 return rootView;
197 View rootView = inflater.inflate(R.layout.fragment_section_dummy, container, false);
199 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
201 return rootView;
CollectionDemoActivity.java 141 View rootView = inflater.inflate(R.layout.fragment_collection_object, container, false);
143 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
145 return rootView;
  /packages/apps/Gallery/src/com/android/camera/
MovieView.java 46 View rootView = findViewById(R.id.root);
48 mControl = new MovieViewControl(rootView, this, intent.getData()) {

Completed in 199 milliseconds

1 2