HomeSort by relevance Sort by last modified time
    Searched refs:rootView (Results 76 - 100 of 125) sorted by null

1 2 34 5

  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
BrowseFragment.java 124 View rootView = inflater.inflate(R.layout.fragment_list, container, false);
128 View controls = rootView.findViewById(R.id.controls);
131 ListView listView = (ListView) rootView.findViewById(R.id.list_view);
153 return rootView;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 95 View rootView = view.getRootView();
96 if (rootView == null) return false;
98 rootView.getWindowVisibleDisplayFrame(appRect);
101 final float bottomMarginDp = Math.abs(rootView.getHeight() - appRect.height()) / density;
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressWidget.java 229 private void createView(ViewGroup rootView, AddressUiComponent field, String defaultKey,
239 rootView.addView(textView, lp);
245 rootView.addView(editText, lp);
251 rootView.addView(spinner, lp);
541 * Creates an AddressWidget to be attached to rootView for the specific context using the
544 public AddressWidget(Context context, ViewGroup rootView, FormOptions formOptions,
546 this(context, rootView, formOptions, cacheManager,
551 * Creates an AddressWidget to be attached to rootView for the specific context using UI
554 public AddressWidget(Context context, ViewGroup rootView, FormOptions formOptions,
563 init(context, rootView, formOptions, cacheManager)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListFragment.java 508 View rootView = inflater.inflate(R.layout.conversation_list, null);
509 mEmptyView = (ConversationListEmptyView) rootView.findViewById(R.id.empty_view);
510 mSecurityHoldView = rootView.findViewById(R.id.security_hold_view);
511 mSecurityHoldText = (TextView) rootView.findViewById(R.id.security_hold_text);
512 mSecurityHoldButton = rootView.findViewById(R.id.security_hold_button);
514 mLoadingView = rootView.findViewById(R.id.conversation_list_loading_view);
515 mListView = (SwipeableListView) rootView.findViewById(R.id.conversation_list_view);
532 ((ViewGroup) rootView.findViewById(R.id.conversation_list_parent_frame))
543 (MailSwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_widget);
550 return rootView;
    [all...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
HelpActivity.java 100 View rootView = activity.getWindow().getDecorView().getRootView();
101 sScreenshot = UiUtils.generateScaledScreenshot(rootView, MAX_FEEDBACK_SCREENSHOT_DIMENSION,
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ContactsExpansion.java 98 ToggleScene(ViewGroup rootView, Transition transition) {
99 mScene = new Scene(rootView);
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
NavigationDrawerActivity.java 234 View rootView = inflater.inflate(R.layout.fragment_planet, container, false);
240 ImageView iv = ((ImageView) rootView.findViewById(R.id.image));
244 return rootView;
  /developers/samples/android/ui/views/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
NavigationDrawerActivity.java 234 View rootView = inflater.inflate(R.layout.fragment_planet, container, false);
240 ImageView iv = ((ImageView) rootView.findViewById(R.id.image));
244 return rootView;
  /development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
NavigationDrawerActivity.java 234 View rootView = inflater.inflate(R.layout.fragment_planet, container, false);
240 ImageView iv = ((ImageView) rootView.findViewById(R.id.image));
244 return 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;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ControlBarPresenter.java 78 ViewHolder(View rootView) {
79 super(rootView);
80 mControlBar = (ControlBar) rootView.findViewById(R.id.control_bar);
DetailsOverviewRowPresenter.java 230 * @param rootView The root View that this view holder will be attached
233 public ViewHolder(View rootView, Presenter detailsPresenter) {
234 super(rootView);
235 mOverviewFrame = (FrameLayout) rootView.findViewById(R.id.details_frame);
236 mOverviewView = (ViewGroup) rootView.findViewById(R.id.details_overview);
237 mImageView = (ImageView) rootView.findViewById(R.id.details_overview_image);
238 mRightPanel = (ViewGroup) rootView.findViewById(R.id.details_overview_right_panel);
248 final int fadeLength = rootView.getResources().getDimensionPixelSize(
  /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...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 155 public View rootView;
163 rootView = v;
175 PackageManager pm = rootView.getContext().getPackageManager();
188 ai.mRootView = rootView;
193 description.setText(rootView.getContext().getText(R.string.cached));
198 icon.setImageDrawable(item.loadIcon(rootView.getContext(), state));
200 ai.updateTime(rootView.getContext(), builder);
  /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/Gallery2/src/com/android/gallery3d/app/
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());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
TextDecoratorUi.java 242 final View rootView = view.getRootView();
243 if (rootView == null) {
247 final ViewGroup windowContentView = (ViewGroup)rootView.findViewById(android.R.id.content);
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 59 ScrollView* rootView = toScrollView(widget->root());
60 if (!rootView)
63 return rootView->inputEventsScaleFactor();
70 ScrollView* rootView = toScrollView(widget->root());
71 if (!rootView)
74 return rootView->inputEventsOffsetForEmulation();
81 FrameView* rootView = toFrameView(widget->root());
82 if (!rootView)
85 return flooredIntPoint(rootView->page()->frameHost().pinchViewport().visibleRect().location());
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 164 protected void initializeUi(final View rootView) {
167 mErrorInfoView = (TextView) rootView.findViewById(R.id.sync_settings_error_info);
170 mUserId = (TextView) rootView.findViewById(R.id.user_id);
171 mProviderId = (TextView) rootView.findViewById(R.id.provider_id);
172 mProviderIcon = (ImageView) rootView.findViewById(R.id.provider_icon);
  /packages/apps/Settings/src/com/android/settings/
AppPicker.java 119 convertView = holder.rootView;
  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 113 final View rootView = inflater.inflate(R.layout.captioning_preview, container, false);
118 ((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
122 ((ViewGroup) rootView.findViewById(R.id.properties_fragment)).addView(
125 return rootView;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
CaptionPreviewFragment.java 144 final View rootView = inflater.inflate(R.layout.captioning_preview, container, false);
145 return rootView;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
AdvancedApp.js 50 var rootView = new WebInspector.RootView();
53 this._rootSplitView.show(rootView.element);
71 rootView.attachToBody();

Completed in 1638 milliseconds

1 2 34 5