/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/com/android/internal/widget/ |
LockScreenWidgetCallback.java | 19 import android.view.View; 25 // Sends a message to lock screen requesting the given view be shown. May be ignored, depending 26 // on lock screen state. View must be the top-level lock screen widget or it will be ignored. 27 public void requestShow(View self); 29 // Sends a message to lock screen requesting the view to be hidden. 30 public void requestHide(View self); 32 // Whether or not this view is currently visible on LockScreen 33 public boolean isVisible(View self); 36 // exclusively in response to user activity, i.e. user hits a button in the view [all...] |
/frameworks/base/core/java/android/transition/ |
TransitionValuesMaps.java | 22 import android.view.View; 25 ArrayMap<View, TransitionValues> viewValues = 26 new ArrayMap<View, TransitionValues>(); 27 SparseArray<View> idValues = new SparseArray<View>(); 28 LongSparseArray<View> itemIdValues = new LongSparseArray<View>(); 29 ArrayMap<String, View> nameValues = new ArrayMap<String, View>(); [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...] |
/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{
|
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/ |
MultiAdapterSetterObj.java | 16 import android.view.View; 20 public View.OnClickListener onClickListener = new View.OnClickListener() { 22 public void onClick(View view) {
|
/frameworks/support/compat/src/main/java/androidx/core/view/ |
ViewPropertyAnimatorListener.java | 17 package androidx.core.view; 19 import android.view.View; 30 * @param view The view associated with the ViewPropertyAnimator 32 void onAnimationStart(View view); 38 * @param view The view associated with the ViewPropertyAnimator 40 void onAnimationEnd(View view) [all...] |
ViewPropertyAnimatorListenerAdapter.java | 17 package androidx.core.view; 19 import android.view.View; 33 public void onAnimationStart(View view) { 40 public void onAnimationEnd(View view) { 47 public void onAnimationCancel(View view) {
|
ViewPropertyAnimatorUpdateListener.java | 17 package androidx.core.view; 19 import android.view.View; 32 * @param view The view associated with the ViewPropertyAnimatorCompat 34 void onAnimationUpdate(View view);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
SwipeableItemView.java | 20 import android.view.View; 40 public static SwipeableView from(View view) { 41 view.setClickable(true); 42 return new SwipeableView(view); 45 private final View mView; 46 private SwipeableView(View view) { 47 mView = view; [all...] |
/frameworks/base/core/java/android/view/ |
ViewParent.java | 17 package android.view; 22 import android.view.accessibility.AccessibilityEvent; 25 * Defines the responsibilities for a class that will be a parent of a View. 26 * This is the API that a view sees when it wants to interact with its parent. 32 * child of this view parent. This will schedule a layout pass of the view 38 * Indicates whether layout was requested on this view parent. 45 * Called when a child wants the view hierarchy to gather and report 47 * the view hierarchy, such as SurfaceView can use this API to improve 48 * performance of the system. When no such a view is present in th [all...] |
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...] |
SoundEffectConstants.java | 17 package android.view; 20 * Constants to be used to play sound effects via {@link View#playSoundEffect(int)} 35 * @param direction One of {@link View#FOCUS_UP}, {@link View#FOCUS_DOWN}, 36 * {@link View#FOCUS_LEFT}, {@link View#FOCUS_RIGHT}, {@link View#FOCUS_FORWARD} 37 * or {@link View#FOCUS_BACKWARD} 45 case View.FOCUS_RIGHT: 47 case View.FOCUS_FORWARD [all...] |
/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;
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
TestOnClickListener.java | 3 import android.view.View; 5 public class TestOnClickListener implements View.OnClickListener { 8 @Override public void onClick(View v) {
|
TestOnLongClickListener.java | 3 import android.view.View; 5 public class TestOnLongClickListener implements View.OnLongClickListener { 9 public boolean onLongClick(View view) {
|
/frameworks/base/core/java/android/webkit/ |
PluginStub.java | 19 import android.view.View; 31 * Return a custom embedded view to draw the plugin. 34 * @return A custom View that will be managed by WebView. 36 public abstract View getEmbeddedView(int NPP, Context context); 39 * Return a custom full-screen view to be displayed when the user requests 41 * to display this View as completely full-screen. 44 * @return A custom View that will be managed by the application. 46 public abstract View getFullScreenView(int NPP, Context context);
|
/frameworks/base/core/java/android/widget/ |
SpinnerAdapter.java | 19 import android.view.View; 20 import android.view.ViewGroup; 31 * Gets a {@link android.view.View} that displays in the drop down popup 34 * @param position index of the item whose view we want. 35 * @param convertView the old view to reuse, if possible. Note: You should 36 * check that this view is non-null and of an appropriate type before 37 * using. If it is not possible to convert this view to display the 38 * correct data, this method can create a new view [all...] |
/frameworks/support/transition/src/main/java/androidx/transition/ |
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...] |
/packages/apps/Dialer/java/com/android/dialer/app/alert/ |
AlertManager.java | 19 import android.view.View; 24 /** Inflates <code>layoutId</code> into a view that is ready to be inserted as an alert. */ 25 View inflate(int layoutId); 27 void add(View view);
|
/packages/apps/Messaging/src/com/android/messaging/ui/ |
PagerViewHolder.java | 18 import android.view.View; 19 import android.view.ViewGroup; 22 * Holds reusable View(s) for a {@link FixedViewPagerAdapter} to display a page. By using 27 /** Instructs the pager to clean up any view related resources 28 * @return the destroyed View so that the adapter may remove it from the container, or 29 * null if no View has been created. */ 30 View destroyView(); 32 /** @return The view that presents the page view to the user * [all...] |
/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/testutils/ |
CoordinatorLayoutUtils.java | 19 import android.view.View; 25 public static class DependentBehavior extends CoordinatorLayout.Behavior<View> { 26 private final View mDependency; 28 public DependentBehavior(View dependency) { 33 public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
|
/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/packages/SystemUI/plugin/src/com/android/systemui/plugins/ |
ViewProvider.java | 17 import android.view.View; 20 View getView();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
ScrollAdapter.java | 19 import android.view.View; 27 * @return Whether the view returned by {@link #getHostView()} is scrolled to the top 32 * @return Whether the view returned by {@link #getHostView()} is scrolled to the bottom 37 * @return The view in which the scrolling is performed 39 public View getHostView();
|