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

1 2 34 5 6 7 8 91011>>

  /frameworks/support/transition/src/main/java/androidx/transition/
GhostViewImpl.java 19 import android.view.View;
20 import android.view.ViewGroup;
27 * Reserves a call to {@link ViewGroup#endViewTransition(View)} at the time when the GhostView
28 * starts drawing its real view.
30 void reserveEndViewTransition(ViewGroup viewGroup, View view);
ViewGroupOverlayImpl.java 19 import android.view.View;
26 * Adds a View to the overlay. The bounds of the added view should be
27 * relative to the host view. Any view added to the overlay should be
35 * <p>If the view has a parent, the view will be removed from that parent
37 * in the current view hierarchy, the view will be repositione
    [all...]
GhostViewUtils.java 21 import android.view.View;
22 import android.view.ViewGroup;
26 static GhostViewImpl addGhost(View view, ViewGroup viewGroup, Matrix matrix) {
28 return GhostViewApi21.addGhost(view, viewGroup, matrix);
30 return GhostViewApi14.addGhost(view, viewGroup);
33 static void removeGhost(View view) {
35 GhostViewApi21.removeGhost(view);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/list/
ContentChangedFilter.java 19 import android.view.View;
20 import android.view.View.AccessibilityDelegate;
21 import android.view.ViewGroup;
22 import android.view.accessibility.AccessibilityEvent;
27 * be rejected at a view's parent once it is generated, use addToParent() to add this delegate to
32 // the view we don't want TYPE_WINDOW_CONTENT_CHANGED to fire.
33 private View view; field in class:ContentChangedFilter
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GraphicsActivity.java 21 import android.view.View;
22 import android.view.ViewGroup;
34 public void setContentView(View view) {
37 vg.addView(view);
38 view = vg;
41 super.setContentView(view);
  /frameworks/base/core/java/android/view/
IInputFilter.aidl 17 package android.view;
19 import android.view.IInputFilterHost;
20 import android.view.InputEvent;
IRemoteAnimationRunner.aidl 17 package android.view;
19 import android.view.RemoteAnimationTarget;
20 import android.view.IRemoteAnimationFinishedCallback;
IOnKeyguardExitResult.aidl 18 package android.view;
IRotationWatcher.aidl 18 package android.view;
IWallpaperVisibilityListener.aidl 17 package android.view;
IWindowSessionCallback.aidl 17 package android.view;
  /frameworks/support/compat/src/main/java/androidx/core/view/
WindowCompat.java 17 package androidx.core.view;
19 import android.view.View;
20 import android.view.Window;
46 * <p>This mode is especially useful with {@link View#SYSTEM_UI_FLAG_FULLSCREEN
47 * View.SYSTEM_UI_FLAG_FULLSCREEN}, which allows you to seamlessly hide the
52 * {@link View#fitSystemWindows(android.graphics.Rect) View.fitSystemWindows(Rect)}
67 * Finds a view that was identified by the {@code android:id} XML attribute
69 * IllegalArgumentException if the ID is invalid, or there is no matching view in the hierarchy
85 T view = window.findViewById(id); local
    [all...]
OnApplyWindowInsetsListener.java 17 package androidx.core.view;
19 import android.view.View;
22 * Listener for applying window insets on a view in a custom way.
25 * to the way that window insets are treated for a view. If an OnApplyWindowInsetsListener
27 * {@link #onApplyWindowInsets(android.view.View, WindowInsetsCompat) onApplyWindowInsets}
28 * method will be called instead of the View's own {@code onApplyWindowInsets} method.
29 * The listener may optionally call the parameter View's <code>onApplyWindowInsets</code>
30 * method to apply the View's normal behavior as part of its own.</p
    [all...]
ViewCompat.java 17 package androidx.core.view;
35 import android.view.Display;
36 import android.view.MotionEvent;
37 import android.view.PointerIcon;
38 import android.view.VelocityTracker;
39 import android.view.View;
40 import android.view.ViewConfiguration;
41 import android.view.ViewGroup;
42 import android.view.ViewParent
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/
LayoutModifier.java 19 import android.view.View;
22 * Interface used to do further setup on a view after it has been inflated.
26 /** Actions to take before inflating the view. */
30 * @param view inflated by the test activity
31 * @return the same view or another view that will be snapshotted by the test
33 View modifyView(View view);
    [all...]
  /cts/libs/view/src/com/android/view/
SurfaceRenderer.java 17 package com.android.cts.view;
20 import android.view.SurfaceHolder;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ViewInitializer.java 18 import android.view.View;
21 * Called after a view is created to set various properties on the view
24 void initializeView(View view);
  /frameworks/base/core/java/com/android/internal/view/
InputBindResult.aidl 17 package com.android.internal.view;
  /frameworks/layoutlib/bridge/src/com/android/internal/widget/
ActionBarAccessor.java 29 public static ActionMenuPresenter getActionMenuPresenter(AbsActionBarView view) {
30 return view.mActionMenuPresenter;
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
IItem.java 19 import android.view.View;
29 * @return Resource ID for the layout of this item. This layout will be used to inflate the View
30 * passed to {@link #onBindView(android.view.View)}.
36 * update {@code view} to reflect its data.
38 * @param view A view inflated from {@link #getLayoutResource()}, which should be updated to
39 * display data from this item. This view may be recycled from other items with the
42 void onBindView(View view)
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
GuidedActionAutofillSupport.java 19 import android.view.View;
54 * Listener for autofill event. Leanback will set the Listener on the custom view.
59 * Custom view should call this method when autofill event happened.
61 * @param view The view where autofill happened.
63 void onAutofill(View view);
68 * Sets AutofillListener on the custom view.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterCustomAlign.java 19 import android.view.View;
29 public int getItemAlignmentExtraOffset(int adapterIndex, View view);
ScrollAdapterCustomSize.java 19 import android.view.View;
33 * NOTE: {@link ScrollAdapterView} does not actually scale the View or change
34 * it's width or height, the view itself is responsible doing the scale in
37 int getSelectItemSize(int adapterIndex, View view);
ScrollAdapterTransform.java 19 import android.view.View;
22 * performs transform on a view based on distance from center
27 * performs transform on a view based on distance pixels from center
29 * @param view view that to perform transform
33 * grid view; in case of a single row/column, it will be 0
35 public void transform(View view, int distanceFromCenter, int distanceFromCenter2ndAxis);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
LinearLayout.java 19 import mock_android.view.ViewGroup;
23 public class LayoutParams extends mock_android.view.ViewGroup.LayoutParams {

Completed in 393 milliseconds

1 2 34 5 6 7 8 91011>>