HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 1 - 25 of 10403) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/
View.java 17 package mock_android.view;
19 public class View {
  /frameworks/base/core/java/android/view/
AnimationRenderStats.aidl 17 package android.view;
AppTransitionAnimationSpec.aidl 17 package android.view;
DisplayInfo.aidl 17 package android.view;
DragEvent.aidl 17 package android.view;
IApplicationToken.aidl 1 /* //device/java/android/android/view/IApplicationToken.aidl
18 package android.view;
InputChannel.aidl 1 /* //device/java/android/android/view/InputChannel.aidl
18 package android.view;
InputDevice.aidl 1 /* //device/java/android/android.view.InputDevice.aidl
18 package android.view;
InputEvent.aidl 1 /* //device/java/android/android.view.InputEvent.aidl
18 package android.view;
KeyEvent.aidl 1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
MagnificationSpec.aidl 18 package android.view;
MotionEvent.aidl 1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
PointerIcon.aidl 17 package android.view;
WindowAnimationFrameStats.aidl 17 package android.view;
WindowContentFrameStats.aidl 17 package android.view;
WindowInfo.aidl 17 package android.view;
IAppTransitionAnimationSpecsFuture.aidl 17 package android.view;
19 import android.view.AppTransitionAnimationSpec;
ViewManager.java 17 package android.view;
25 * Assign the passed LayoutParams to the passed View and add the view to the window.
26 * <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
27 * errors, such as adding a second view to a window without removing the first view.
28 * <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
31 * @param view The view to be added to this window.
32 * @param params The LayoutParams to assign to view
    [all...]
ViewOutlineProvider.java 17 package android.view;
23 * Interface by which a View builds its {@link Outline}, used for shadow casting and clipping.
27 * Default outline provider for Views, which queries the Outline from the View's background,
28 * or generates a 0 alpha, rectangular Outline the size of the View if a background
35 public void getOutline(View view, Outline outline) {
36 Drawable background = view.getBackground();
40 outline.setRect(0, 0, view.getWidth(), view.getHeight());
47 * Maintains the outline of the View to match its rectangular bounds
    [all...]
  /frameworks/support/compat/ics/android/support/v4/view/
ViewPropertyAnimatorListener.java 1 package android.support.v4.view;/*
17 import android.view.View;
28 * @param view The view associated with the ViewPropertyAnimator
30 void onAnimationStart(View view);
36 * @param view The view associated with the ViewPropertyAnimator
38 void onAnimationEnd(View view)
    [all...]
ViewPropertyAnimatorUpdateListener.java 17 package android.support.v4.view;
19 import android.view.View;
32 * @param view The view associated with the ViewPropertyAnimatorCompat
34 void onAnimationUpdate(View view);
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
DataBindingComponent.java 18 import android.view.LayoutInflater;
19 import android.view.View;
20 import android.view.ViewGroup;
37 * @see DataBindingUtil#bind(View, DataBindingComponent)
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
ViewPressedModifier.java 19 import android.view.View;
24 public View modifyView(View view) {
25 view.setPressed(true);
26 return view;
  /frameworks/base/core/java/android/view/autofill/
AutofillManagerInternal.java 16 package android.view.autofill;
  /frameworks/base/core/tests/coretests/src/android/view/
MockView.java 17 package android.view;
20 * Mock View class for testing
23 public class MockView extends View{

Completed in 652 milliseconds

1 2 3 4 5 6 7 8 91011>>