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

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
H A DAnimateableGridViewBounds.java17 package com.android.systemui.recents.views.grid;
20 import com.android.systemui.recents.views.AnimateableViewBounds;
22 /* An outline provider for grid-based task views. */
H A DGridTaskView.java17 package com.android.systemui.recents.views.grid;
22 import com.android.systemui.recents.views.AnimateableViewBounds;
23 import com.android.systemui.recents.views.TaskView;
H A DGridTaskViewThumbnail.java17 package com.android.systemui.recents.views.grid;
25 import com.android.systemui.recents.views.TaskViewThumbnail;
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.
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DDropTarget.java17 package com.android.systemui.recents.views;
H A DFixedSizeImageView.java17 package com.android.systemui.recents.views;
H A DRecentsEntrancePathInterpolator.java17 package com.android.systemui.recents.views;
H A DFreeformWorkspaceLayoutAlgorithm.java17 package com.android.systemui.recents.views;
H A DFixedSizeFrameLayout.java17 package com.android.systemui.recents.views;
H A DTaskViewAccessibilityDelegate.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 DAnimateableViewBounds.java17 package com.android.systemui.recents.views;
H A DAnimationProps.java17 package com.android.systemui.recents.views;
H A DRecentsViewTouchHandler.java17 package com.android.systemui.recents.views;
H A DSystemBarScrimViews.java17 package com.android.systemui.recents.views;
72 * Prepares the scrim views for animating when entering Recents. This will be called before
115 * Starts animating the scrim views when entering Recents.
129 * Starts animating the scrim views when leaving Recents (either via launching a task, or
H A DTaskViewTransform.java17 package com.android.systemui.recents.views;
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DProgressBarWrapper.java18 package com.android.ex.photo.views;
/frameworks/base/core/java/android/appwidget/
H A DPendingHostUpdate.java34 RemoteViews views; field in class:PendingHostUpdate
38 public static PendingHostUpdate updateAppWidget(int appWidgetId, RemoteViews views) { argument
40 update.views = views;
68 views = new RemoteViews(in);
92 writeNullParcelable(views, dest, flags);
H A DAppWidgetHost.java76 public void updateAppWidget(int appWidgetId, RemoteViews views) { argument
77 if (isLocalBinder() && views != null) {
78 views = views.clone();
84 Message msg = handler.obtainMessage(HANDLE_UPDATE, appWidgetId, 0, views);
213 updateAppWidgetView(update.appWidgetId, update.views);
384 RemoteViews views;
386 views = sService.getAppWidgetViews(mContextOpPackageName, appWidgetId);
390 view.updateAppWidget(views);
430 void updateAppWidgetView(int appWidgetId, RemoteViews views) { argument
[all...]
/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/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DTwoWayBindingAdapterTest.java773 private void makeVisible(final View... views) throws Throwable { argument
806 for (View view : views) {
/frameworks/support/design/src/android/support/design/widget/
H A DHeaderScrollingViewBehavior.java154 abstract View findFirstDependency(List<View> views); argument
/frameworks/support/media-compat/java/android/support/v4/media/app/
H A DNotificationCompat.java340 * Notification style for media custom views that are decorated by the system.
352 * corresponding custom views to display.
371 * your custom views in order to get the correct styling on each platform version.
494 private void setBackgroundColor(RemoteViews views) { argument
499 views.setInt(R.id.status_bar_latest_event_content, "setBackgroundColor", color);
/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);

Completed in 345 milliseconds

123