Searched defs:views (Results 1 - 25 of 47) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFixedSizeImageView.java17 package com.android.systemui.recents.views;
H A DSystemBarScrimViews.java17 package com.android.systemui.recents.views;
44 * Prepares the scrim views for animating when entering Recents. This will be called before
60 * Starts animating the scrim views when entering Recents.
100 * Starts animating the scrim views when leaving Recents (either via launching a task, or
H A DViewAnimation.java17 package com.android.systemui.recents.views;
44 // The total number of task views
H A DAnimateableViewBounds.java17 package com.android.systemui.recents.views;
H A DTaskStackViewFilterAlgorithm.java17 package com.android.systemui.recents.views;
40 /** Orchestrates the animations of the current child views and any new views. */
45 // Calculate the transforms to animate out all the existing views if they are not in the
53 // If all the current views are in the visible range of the new stack, then don't wait for
54 // views to animate out and animate all the new views into their place
62 // Animate all the views to their final transforms
78 // For views that are not already visible, animate them in
95 * Creates the animations for all the children views tha
[all...]
H A DTaskViewTransform.java17 package com.android.systemui.recents.views;
H A DViewPool.java17 package com.android.systemui.recents.views;
25 /* A view pool to manage more views than we can visibly handle */
79 /** Returns an iterator to the list of the views in the pool. */
H A DDebugOverlayView.java17 package com.android.systemui.recents.views;
34 * A full screen overlay layer that allows us to draw views from throughout the system on the top
H A DFakeShadowDrawable.java16 package com.android.systemui.recents.views;
H A DTaskStackViewLayoutAlgorithm.java17 package com.android.systemui.recents.views;
H A DTaskStackViewScroller.java17 package com.android.systemui.recents.views;
H A DTaskStackViewTouchHandler.java17 package com.android.systemui.recents.views;
H A DTaskViewHeader.java17 package com.android.systemui.recents.views;
58 // Header views
133 // Initialize the icon and description views
H A DTaskViewThumbnail.java17 package com.android.systemui.recents.views;
H A DRecentsView.java17 package com.android.systemui.recents.views;
111 // Remove all/extra stack views
121 // Update the stack views that we are keeping
129 // Add remaining/recreate stack views
162 // Iterate the stack views and try and find the focused task
538 // Remove any stored data from the loader. We currently don't bother notifying the views
539 // that the data has been unloaded because at the point we call onTaskViewDismissed(), the views
H A DSwipeHelper.java17 package com.android.systemui.recents.views;
35 * by the class hosting the views that need to swiped, and, using this interface, handles touch
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DProgressBarWrapper.java18 package com.android.ex.photo.views;
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DAdjacentListsWithAdjacentISVsInside.java85 private static View combineAdjacent(View... views) { argument
86 if (views.length < 2) {
87 throw new IllegalArgumentException("you should pass at least 2 views in");
90 final LinearLayout ll = new LinearLayout(views[0].getContext());
95 for (View view : views) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDelegateViewHelper.java116 * Selects the initial touch region based on a list of views. This is meant to be called by
118 * will compute a minimum bound that contains all specified views.
120 * @param views
122 public void setInitialTouchRegion(View ... views) { argument
125 for (int i = 0; i < views.length; i++) {
126 View view = views[i];
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java136 // Ensure the views have been laid out before capturing the views -- we need the epicenter.
370 private static void removeNullViews(ArrayList<View> views) { argument
371 if (views != null) {
372 for (int i = views.size() - 1; i >= 0; i--) {
373 if (views.get(i) == null) {
374 views.remove(i);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java68 public void updateAppWidget(int appWidgetId, RemoteViews views) { argument
69 if (isLocalBinder() && views != null) {
70 views = views.clone();
72 Message msg = mHandler.obtainMessage(HANDLE_UPDATE, appWidgetId, 0, views);
319 RemoteViews views;
321 views = sService.getAppWidgetViews(mContextOpPackageName, appWidgetId);
325 view.updateAppWidget(views);
373 void updateAppWidgetView(int appWidgetId, RemoteViews views) { argument
379 v.updateAppWidget(views);
[all...]
H A DAppWidgetManager.java466 * @param views The RemoteViews object to show.
468 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) { argument
473 mService.updateAppWidgetIds(mPackageName, appWidgetIds, views);
543 * @param views The RemoteViews object to show.
545 public void updateAppWidget(int appWidgetId, RemoteViews views) { argument
549 updateAppWidget(new int[] { appWidgetId }, views);
558 * level 17, the new properties set within the views objects will be appended to the cached
574 * @param views The RemoteViews object containing the incremental update / command.
576 public void partiallyUpdateAppWidget(int[] appWidgetIds, RemoteViews views) { argument
581 mService.partiallyUpdateAppWidgetIds(mPackageName, appWidgetIds, views);
611 partiallyUpdateAppWidget(int appWidgetId, RemoteViews views) argument
631 updateAppWidget(ComponentName provider, RemoteViews views) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java90 * We will add to the views before the end state of the transition is captured so that the
91 * views will appear. At the start of the transition, we clear the list of targets so that
161 // views to be targeted regardless of excluded views. If that happens, then the
162 // excluded fragments views (hidden fragments) will still be in the transition.
312 * This method removes the views from transitions that target ONLY those views.
313 * The views list should match those added in addTargets and should contain
316 public static void removeTargets(Object transitionObject, ArrayList<View> views) { argument
323 removeTargets(child, views);
345 addTargets(Object transitionObject, ArrayList<View> views) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java17 package com.android.photos.views;
H A DTiledImageView.java17 package com.android.photos.views;
40 import com.android.photos.views.TiledImageRenderer.TileSource;

Completed in 2705 milliseconds

12