Searched defs:view (Results 76 - 100 of 847) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/
H A DFallbackEventHandler.java17 package android.view;
H A DSoundEffectConstants.java17 package android.view;
H A DSurfaceSession.java17 package android.view;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEventSource.java17 package android.view.accessibility;
/frameworks/base/core/java/android/view/animation/
H A DAccelerateDecelerateInterpolator.java17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DBaseInterpolator.java17 package android.view.animation;
H A DBounceInterpolator.java17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DLinearInterpolator.java17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
/frameworks/base/core/tests/coretests/src/android/view/
H A DDisabledLongpressTest.java17 package android.view;
19 import android.view.Longpress;
27 import android.view.View;
28 import android.view.View.OnLongClickListener;
31 * Exercises {@link android.view.View}'s longpress plumbing by testing the
H A DIncludeTest.java17 package android.view;
19 import android.view.Include;
24 import android.view.View;
25 import android.view.ViewGroup;
H A DLongpressTest.java17 package android.view;
19 import android.view.Longpress;
27 import android.view.View;
28 import android.view.View.OnLongClickListener;
31 * Exercises {@link android.view.View}'s longpress plumbing.
H A DMutateDrawableTest.java17 package android.view;
21 import android.view.View;
22 import android.view.MutateDrawable;
H A DRunQueue.java17 package android.view;
22 import android.view.View;
23 import android.view.ViewTreeObserver;
44 final View view = findViewById(R.id.simple_view);
46 view.post(new Runnable() {
57 view.post(runnable);
58 view.post(runnable);
59 view.post(runnable);
60 view.post(runnable);
61 view
[all...]
H A DRunQueueTest.java17 package android.view;
57 assertFalse("The view tree observer is still alive", activity.viewTreeObserver.isAlive());
H A DViewStubTest.java17 package android.view;
19 import android.view.StubbedView;
25 import android.view.View;
26 import android.view.ViewStub;
54 assertNotNull("The inflated view is null", swapped);
65 assertNotNull("The inflated view is null", swapped);
66 assertTrue("The inflated view has no id", swapped.getId() != View.NO_ID);
67 assertTrue("The inflated view has the wrong id", swapped.getId() == R.id.stub_inflated);
78 assertNotNull("The inflated view is null", swapped);
H A DVisibility.java17 package android.view;
23 import android.view.View;
36 // Find the view whose visibility will change
/frameworks/base/core/tests/coretests/src/android/view/menu/
H A DMenuWith1Item.java17 package android.view.menu;
H A DMenuWith1ItemTest.java17 package android.view.menu;
19 import android.view.menu.MenuWith1Item;
21 import com.android.internal.view.menu.MenuBuilder;
28 import android.view.KeyEvent;
29 import android.view.View;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationBigMediaNarrowViewWrapper.java20 import android.view.View;
28 View view) {
29 super(ctx, view);
27 NotificationBigMediaNarrowViewWrapper(Context ctx, View view) argument
H A DNotificationBigPictureViewWrapper.java20 import android.view.View;
23 * Wraps a notification view inflated from a big picture style template.
27 protected NotificationBigPictureViewWrapper(Context ctx, View view) { argument
28 super(ctx, view);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DInstanceTargets.java20 import android.view.View;
21 import android.view.ViewGroup;
44 public void sendMessage(final View view) { argument
45 TransitionManager.beginDelayedTransition(mSceneRoot, new ChangeBounds().addTarget(view));
H A DOverlayTest.java20 import android.view.View;
21 import android.view.ViewGroup;
39 public void onClick(View view) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DMenuInflater_Delegate.java17 package android.view;
22 import com.android.internal.view.menu.BridgeMenuItemImpl;
23 import com.android.internal.view.menu.MenuView;
36 * The main purpose of the class is to get the view key from the menu xml parser and add it to
37 * the menu item. The view key is used by the IDE to match the individual view elements to the
41 * view key than the {@link MenuView.ItemView}. At the time of computation of the rest of {@link
42 * ViewInfo}, we check the corresponding view key in the menu item for the view and add it
H A DSurfaceView.java17 package android.view;
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DImageViewBindingAdapter.java31 public static void setImageUri(ImageView view, String imageUri) { argument
33 view.setImageURI(null);
35 view.setImageURI(Uri.parse(imageUri));
40 public static void setImageUri(ImageView view, Uri imageUri) { argument
41 view.setImageURI(imageUri);
45 public static void setImageUri(ImageView view, Drawable drawable) { argument
46 view.setImageDrawable(drawable);

Completed in 394 milliseconds

1234567891011>>