Searched refs:views (Results 26 - 50 of 117) sorted by relevance

12345

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/activity/
H A DPackagesChangedEvent.java21 import com.android.systemui.recents.views.TaskStackView;
H A DLaunchTaskEvent.java23 import com.android.systemui.recents.views.TaskView;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlBar.java65 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
68 views.add(getChildAt(mLastFocusIndex));
70 views.add(getChildAt(getDefaultFocusIndex()));
73 super.addFocusables(views, direction, focusableMode);
H A DPersistentFocusWrapper.java92 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
96 super.addFocusables(views, direction, focusableMode);
99 views.add(this);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java74 public void updateAppWidget(int appWidgetId, RemoteViews views) { argument
75 if (isLocalBinder() && views != null) {
76 views = views.clone();
82 Message msg = handler.obtainMessage(HANDLE_UPDATE, appWidgetId, 0, views);
202 updateAppWidgetView(update.appWidgetId, update.views);
352 RemoteViews views;
354 views = sService.getAppWidgetViews(mContextOpPackageName, appWidgetId);
358 view.updateAppWidget(views);
398 void updateAppWidgetView(int appWidgetId, RemoteViews views) { argument
[all...]
H A DAppWidgetManager.java504 * @param views The RemoteViews object to show.
506 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) { argument
511 mService.updateAppWidgetIds(mPackageName, appWidgetIds, views);
578 * @param views The RemoteViews object to show.
580 public void updateAppWidget(int appWidgetId, RemoteViews views) { argument
584 updateAppWidget(new int[] { appWidgetId }, views);
593 * level 17, the new properties set within the views objects will be appended to the cached
609 * @param views The RemoteViews object containing the incremental update / command.
611 public void partiallyUpdateAppWidget(int[] appWidgetIds, RemoteViews views) { argument
616 mService.partiallyUpdateAppWidgetIds(mPackageName, appWidgetIds, views);
646 partiallyUpdateAppWidget(int appWidgetId, RemoteViews views) argument
666 updateAppWidget(ComponentName provider, RemoteViews views) argument
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTransitionCompat21.java61 * specific shared elements. This allows developers to target child views of the
67 final List<View> views = transition.getTargets();
68 views.clear();
72 bfsAddViewChildren(views, view);
74 views.add(nonExistentView);
80 * Uses a breadth-first scheme to add startView and all of its children to views.
81 * It won't add a child if it is already in views.
83 private static void bfsAddViewChildren(final List<View> views, final View startView) { argument
84 final int startIndex = views.size();
85 if (containedBeforeIndex(views, startVie
107 containedBeforeIndex(final List<View> views, final View view, final int maxIndex) argument
153 addTargets(Object transitionObj, ArrayList<View> views) argument
[all...]
H A DFragmentTransition.java250 * Replace hide operations with visibility changes on the exiting views. Instead of making
325 // Ensure the entering transition doesn't target anything until the views are made
363 * @param exitingViews The exiting views of the outgoing fragment
377 ArrayList<View> views = configureEnteringExitingViews(
379 enteringViews.addAll(views);
449 * views, and sets up the epicenter on the transitions.
556 * Add Views from sharedElements into views that have the transitionName in the
559 * @param views Views list to add shared elements to
561 * @param nameOverridesSet The transition names for all views to be copied from
562 * sharedElements to views
564 addSharedElementsWithMatchingNames(ArrayList<View> views, ArrayMap<String, View> sharedElements, Collection<String> nameOverridesSet) argument
940 setViewVisibility(ArrayList<View> views, int visibility) argument
[all...]
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DMainActivityTest.java68 List<Map<Short, Object>> views = parser.getViews();
71 assertEquals(1, views.size());
74 Map<Short, Object> textViewProperties = views.get(0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/dragndrop/
H A DDragStartEvent.java23 import com.android.systemui.recents.views.TaskView;
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DProgressBarWrapper.java18 package com.android.ex.photo.views;
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.aidl51 void updateAppWidgetIds(String callingPackage, in int[] appWidgetIds, in RemoteViews views);
55 in RemoteViews views);
56 void updateAppWidgetProvider(in ComponentName provider, in RemoteViews views);
/frameworks/base/core/java/android/app/
H A DFragmentTransition.java302 // Ensure the entering transition doesn't target anything until the views are made
324 * Replace hide operations with visibility changes on the exiting views. Instead of making
363 * @param exitingViews The exiting views of the outgoing fragment
374 ArrayList<View> views = configureEnteringExitingViews(
376 enteringViews.addAll(views);
454 * views, and sets up the epicenter on the transitions.
561 * Add Views from sharedElements into views that have the transitionName in the
564 * @param views Views list to add shared elements to
566 * @param nameOverridesSet The transition names for all views to be copied from
567 * sharedElements to views
569 addSharedElementsWithMatchingNames(ArrayList<View> views, ArrayMap<String, View> sharedElements, Collection<String> nameOverridesSet) argument
961 bfsAddViewChildren(final List<View> views, final View startView) argument
985 containedBeforeIndex(final List<View> views, final View view, final int maxIndex) argument
1058 addTargets(Transition transition, ArrayList<View> views) argument
1120 setViewVisibility(ArrayList<View> views, @View.Visibility int visibility) argument
[all...]
H A DActivityTransitionCoordinator.java63 * - The transitioning views are made INVISIBLE
72 * - If the window allows overlapping transitions, the views transition is started by setting
81 * by setting entering views to VISIBLE and the background is animated to opaque.
95 * - All transitioning views are made VISIBLE to reverse what was done when onActivityStopped()
108 * - If the window allows overlapping transitions, the views transition is started by setting
118 * by setting entering views to VISIBLE.
380 // Allow children of excluded transitioning views, but not the views themselves
400 * excluded. {@code views} will be modified to contain only those Views that are included
405 * @param views Th
408 removeExcludedViews(Transition transition, ArrayList<View> views) argument
425 findIncludedViews(Transition transition, ArrayList<View> views, ArraySet<View> included) argument
755 hideViews(ArrayList<View> views) argument
766 showViews(ArrayList<View> views, boolean setTransitionAlpha) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java31 * Helper to invert the colors of views and fade between the states.
50 final ArrayList<View> views = new ArrayList<>();
51 views.add(target);
52 return views;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
H A DTaskViewFocusFrame.java17 package com.android.systemui.recents.views.grid;
27 import com.android.systemui.recents.views.TaskStackView;
108 // If focus goes to other views, we hide the frame.
H A DTaskGridLayoutAlgorithm.java17 package com.android.systemui.recents.views.grid;
19 import static com.android.systemui.recents.views.TaskStackLayoutAlgorithm.*;
32 import com.android.systemui.recents.views.TaskStackLayoutAlgorithm;
33 import com.android.systemui.recents.views.TaskViewTransform;
46 /** The padding between task views. */
88 // If we're in portrait but task views are landscape, show more lines of fewer tasks.
95 // If we're in landscape but task views are portrait, show fewer lines of more tasks.
187 * amount of task views.
190 * @param taskCount The current amount of task views.
209 // We always set the dim alpha to 0, since we don't want grid task views t
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFixedSizeImageView.java17 package com.android.systemui.recents.views;
H A DViewPool.java17 package com.android.systemui.recents.views;
26 /* A view pool to manage more views than we can visibly handle */
81 * Returns the list of views in the pool.
H A DFixedSizeFrameLayout.java17 package com.android.systemui.recents.views;
H A DAnimateableViewBounds.java17 package com.android.systemui.recents.views;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DWrapContentBasicTest.java163 View[] views = new View[count];
167 views[i] = v;
171 return views;
/frameworks/base/core/java/android/view/
H A DFocusFinder.java350 // only interested in other non-root views
723 // Give preference to innermost views
809 public void sort(View[] views, int start, int end, ViewGroup root, boolean isRtl) { argument
823 views[i].getDrawingRect(next);
824 root.offsetDescendantRectToMyCoords(views[i], next);
825 mRectByView.put(views[i], next);
829 Arrays.sort(views, start, count, mTopsComparator);
831 int sweepBottom = mRectByView.get(views[start]).bottom;
835 Rect currRect = mRectByView.get(views[sweepIdx]);
839 Arrays.sort(views, rowStar
864 sort(View[] views, int start, int end, ViewGroup root, boolean isRtl) argument
[all...]
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DFragmentTransitionTest.java274 ArgumentCaptor<List> views = ArgumentCaptor.forClass(List.class);
276 verify(enterCallback).onSharedElementStart(names.capture(), views.capture(),
279 assertEquals(1, views.getValue().size());
282 assertEquals(startBlue, views.getValue().get(0));
286 verify(enterCallback).onSharedElementEnd(names.capture(), views.capture(),
289 assertEquals(1, views.getValue().size());
292 assertEquals(endBlue, views.getValue().get(0));
298 verify(enterCallback).onSharedElementStart(names.capture(), views.capture(),
301 assertEquals(1, views.getValue().size());
304 assertEquals(endBlue, views
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java82 import com.android.systemui.recents.views.RecentsTransitionHelper;
83 import com.android.systemui.recents.views.RecentsTransitionHelper.AppTransitionAnimationSpecsFuture;
84 import com.android.systemui.recents.views.TaskStackLayoutAlgorithm;
85 import com.android.systemui.recents.views.TaskStackLayoutAlgorithm.VisibilityReport;
86 import com.android.systemui.recents.views.TaskStackView;
87 import com.android.systemui.recents.views.TaskStackViewScroller;
88 import com.android.systemui.recents.views.TaskViewHeader;
89 import com.android.systemui.recents.views.TaskViewTransform;
90 import com.android.systemui.recents.views.grid.TaskGridLayoutAlgorithm;

Completed in 637 milliseconds

12345