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

12 3

  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
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/UnifiedEmail/src/com/android/mail/ui/
ConversationViewProgressController.java 64 public void instantiateProgressIndicators(View rootView) {
65 mBackgroundView = rootView.findViewById(R.id.background_view);
66 mProgressView = rootView.findViewById(R.id.loading_progress);
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...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
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/tests/TransitionTests/src/com/android/transitiontests/
UniqueIds.java 64 ToggleScene(ViewGroup rootView, Button button) {
65 mScene = new Scene(rootView);
ContactsExpansion.java 98 ToggleScene(ViewGroup rootView, Transition transition) {
99 mScene = new Scene(rootView);
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 16 public View rootView;
30 holder.rootView = convertView;
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);
ManageApplications.java 777 convertView = holder.rootView;
    [all...]
  /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());
MoviePlayer.java 119 public MoviePlayer(View rootView, final MovieActivity movieActivity,
122 mRootView = rootView;
123 mVideoView = (VideoView) rootView.findViewById(R.id.surface_view);
128 ((ViewGroup)rootView).addView(mController.getView());
  /developers/samples/android/ui/views/HorizontalPaging/HorizontalPaging/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 216 View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
217 TextView dummyTextView = (TextView) rootView.findViewById(R.id.section_label);
219 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.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.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 120 CanvasViewInfo rootView = info.mRootView;
131 refactoring.setRootView(rootView);
  /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/Gallery/src/com/android/camera/
MovieViewControl.java 79 public MovieViewControl(View rootView, Context context, Uri videoUri) {
81 mVideoView = (VideoView) rootView.findViewById(R.id.surface_view);
82 mProgressView = rootView.findViewById(R.id.progress_indicator);
ViewImage.java 260 private void setupOnScreenControls(View rootView, View ownerView) {
261 mNextImageView = rootView.findViewById(R.id.next_image);
262 mPrevImageView = rootView.findViewById(R.id.prev_image);
268 setupOnTouchListeners(rootView);
295 private void setupOnTouchListeners(View rootView) {
323 rootView.setOnTouchListener(rootListener);
    [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/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 360 static View addStreamItemText(Context context, StreamItemEntry streamItem, View rootView) {
361 TextView htmlView = (TextView) rootView.findViewById(R.id.stream_item_html);
362 TextView attributionView = (TextView) rootView.findViewById(
364 TextView commentsView = (TextView) rootView.findViewById(R.id.stream_item_comments);
374 return rootView;
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 165 protected void initializeUi(final View rootView) {
168 mErrorInfoView = (TextView) rootView.findViewById(R.id.sync_settings_error_info);
171 mUserId = (TextView) rootView.findViewById(R.id.user_id);
172 mProviderId = (TextView) rootView.findViewById(R.id.provider_id);
173 mProviderIcon = (ImageView) rootView.findViewById(R.id.provider_icon);
  /packages/apps/Settings/src/com/android/settings/
AppPicker.java 119 convertView = holder.rootView;

Completed in 2314 milliseconds

12 3