HomeSort by relevance Sort by last modified time
    Searched defs:rootView (Results 26 - 50 of 55) sorted by null

12 3

  /developers/samples/android/ui/views/HorizontalPaging/HorizontalPagingSample/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 212 View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
213 TextView dummyTextView = (TextView) rootView.findViewById(R.id.section_label);
215 return rootView;
  /development/samples/browseable/HorizontalPaging/src/com.example.android.horizontalpaging/
MainActivity.java 212 View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
213 TextView dummyTextView = (TextView) rootView.findViewById(R.id.section_label);
215 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;
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/testapp/src/com/android/uiautomator/tests/cts/testapp/
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;
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;
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;
  /packages/apps/Settings/src/com/android/settings/accessibility/
ToggleCaptioningPreferenceFragment.java 57 final View rootView = inflater.inflate(R.layout.captioning_preview, container, false);
62 ((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
65 return rootView;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 120 CanvasViewInfo rootView = info.mRootView;
131 refactoring.setRootView(rootView);
RefactoringTest.java 295 CanvasViewInfo rootView = CanvasViewInfo.create(info, true /* layoutlib5 */).getFirst();
307 testInfo.mRootView = rootView;
  /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...]
  /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...]
  /development/samples/training/NavigationDrawer/src/com/example/android/navigationdrawerexample/
MainActivity.java 229 View rootView = inflater.inflate(R.layout.fragment_planet, container, false);
235 ((ImageView) rootView.findViewById(R.id.image)).setImageResource(imageId);
237 return rootView;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieActivity.java 66 private void setSystemUiVisibility(View rootView) {
68 rootView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
82 View rootView = findViewById(R.id.movie_view_root);
84 setSystemUiVisibility(rootView);
91 mPlayer = new MoviePlayer(rootView, this, intent.getData(), savedInstanceState,
TrimVideo.java 98 View rootView = findViewById(R.id.trim_view_root);
100 mVideoView = (VideoView) rootView.findViewById(R.id.surface_view);
103 ((ViewGroup) rootView).addView(mController.getView());
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 151 public View rootView;
159 rootView = v;
171 PackageManager pm = rootView.getContext().getPackageManager();
184 ai.mRootView = rootView;
189 description.setText(rootView.getContext().getText(R.string.cached));
194 icon.setImageDrawable(item.loadIcon(rootView.getContext(), state));
196 ai.updateTime(rootView.getContext(), builder);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewController.java 74 View rootView = inflater.inflate(R.layout.secure_conversation_view, container, false);
75 mScrollView = (MessageScrollView) rootView.findViewById(R.id.scroll_view);
76 mConversationHeaderView = (ConversationViewHeader) rootView.findViewById(R.id.conv_header);
77 mMessageHeaderView = (MessageHeaderView) rootView.findViewById(R.id.message_header);
78 mMessageFooterView = (MessageFooterView) rootView.findViewById(R.id.message_footer);
84 final int color = rootView.getResources().getColor(
89 ((BorderView) rootView.findViewById(R.id.top_border)).disableCardBottomBorder();
90 ((BorderView) rootView.findViewById(R.id.bottom_border)).disableCardTopBorder();
94 mProgressController.instantiateProgressIndicators(rootView);
95 mWebView = (MessageWebView) rootView.findViewById(R.id.webview)
    [all...]
ConversationListFragment.java 420 View rootView = inflater.inflate(R.layout.conversation_list, null);
421 mEmptyView = rootView.findViewById(R.id.empty_view);
423 (ConversationListView) rootView.findViewById(R.id.conversation_list);
425 mListView = (SwipeableListView) rootView.findViewById(android.R.id.list);
435 return rootView;
    [all...]
FolderListFragment.java 353 final View rootView = inflater.inflate(R.layout.folder_list, null);
354 mListView = (ListView) rootView.findViewById(android.R.id.list);
369 return rootView;
    [all...]
  /external/chromium_org/third_party/skia/src/views/mac/
SkOSWindow_Mac.cpp 100 HIViewRef rootView = HIViewGetRoot(wr);
101 HIViewFindByID(rootView, kHIViewWindowContentID, &parent);
123 set_axisposition(&layout.position.y, rootView, kHILayoutPositionTop);
  /external/skia/src/views/mac/
SkOSWindow_Mac.cpp 100 HIViewRef rootView = HIViewGetRoot(wr);
101 HIViewFindByID(rootView, kHIViewWindowContentID, &parent);
123 set_axisposition(&layout.position.y, rootView, kHILayoutPositionTop);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 683 CanvasViewInfo rootView = createView(null, root, 0, 0);
684 addKeyedSubtrees(rootView, root, 0, 0);
687 for (CanvasViewInfo vi : rootView.getChildren()) {
708 if (view.getParent() != rootView) {
730 CanvasViewInfo mergeView = new CanvasViewInfo(rootView, VIEW_MERGE, null,
733 if (rootView.removeChild(view)) {
737 rootView.addChild(mergeView);
741 return Pair.of(rootView, includedBounds);
745 CanvasViewInfo rootView = addKeyedSubtrees(null, root, 0, 0);
750 if (rootView != null && hasMergeParent(rootView.getUiViewNode()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 585 CanvasViewInfo rootView = mRootView;
586 if (rootView == null) {
589 rootView = viewHierarchy.getRoot();
593 new RelativeLayoutConversionHelper(this, layout, mFlatten, rootEdit, rootView);
607 CanvasViewInfo rootView = mRootView;
608 if (rootView == null) {
611 rootView = viewHierarchy.getRoot();
615 rootEdit, rootView);
649 public void setRootView(CanvasViewInfo rootView) {
650 mRootView = rootView;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java     [all...]

Completed in 1652 milliseconds

12 3