Searched defs:view (Results 126 - 150 of 441) sorted by relevance

1234567891011>>

/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DViewGroup.java22 import android.view.View;
28 abstract class ViewGroup extends android.view.ViewGroup {
48 * size is smaller than the size the view wants to be.
50 * @param size How big the view wants to be
80 protected static boolean isLayoutRtl(View view) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DOnSizeChangedListener.java19 import android.view.View;
22 void onSizeChanged(View view, int w, int h, int oldw, int oldh); argument
/frameworks/base/core/java/android/view/
H A DActionMode.java17 package android.view;
65 * a custom view has been set.
76 * a custom view has been set.
87 * a custom view has been set.
98 * a custom view has been set.
146 * Set a custom view for this action mode. The custom view will take the place of
149 * @param view Custom view to use in place of the title/subtitle.
154 public abstract void setCustomView(View view); argument
[all...]
H A DFocusFinderHelper.java17 package android.view;
H A DGLES20Layer.java18 package android.view;
H A DOrientationListener.java17 package android.view;
25 * @deprecated use {@link android.view.OrientationEventListener} instead.
102 * Look at {@link android.view.OrientationEventListener#onOrientationChanged}
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java17 package android.view.animation;
22 import android.view.View;
23 import android.view.ViewGroup;
28 * A layout animation controller is used to animated a layout's, or a view
31 * is used by {@link android.view.ViewGroup} to compute the delay by which each
33 * characteristics of each child, like its index in the view group.
36 * amount of miliseconds by the index of the child in its parent view group.
38 * {@link #getDelayForView(android.view.View)} to implement a different way
40 * {@link android.view.animation.GridLayoutAnimationController} will compute the
41 * delay based on the column and row indices of the child in its parent view
320 getAnimationForView(View view) argument
368 getDelayForView(View view) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DSubMenuBuilder.java17 package com.android.internal.view.menu;
21 import android.view.Menu;
22 import android.view.MenuItem;
23 import android.view.SubMenu;
24 import android.view.View;
111 public SubMenu setHeaderView(View view) { argument
112 return (SubMenu) super.setHeaderViewInt(view);
/frameworks/base/tools/layoutlib/create/tests/data/
H A Dmock_android.jar ... view/View.class View.java package mock_android.view public mock_android.view.View extends java.lang ...
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java17 package android.support.v4.view;
22 import android.view.View;
23 import android.view.ViewGroup;
69 * could be implemented as <code>return view == object;</code>.</p>
100 * for adding the view to the container given here, although it only
115 * for removing the view from its container, although it only must ensure
163 * for adding the view to the container given here, although it only
181 * for removing the view from its container, although it only must ensure
226 * @param view Page View to check for association with <code>object</code>
227 * @param object Object to check for association with <code>view</cod
230 isViewFromObject(View view, Object object) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java21 import android.view.View;
41 public CharSequence getTransformation(CharSequence source, View view) { argument
50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, argument
H A DBaseKeyListener.java19 import android.view.KeyEvent;
20 import android.view.View;
48 public boolean backspace(View view, Editable content, int keyCode, KeyEvent event) { argument
49 return backspaceOrForwardDelete(view, content, keyCode, event, false);
60 public boolean forwardDelete(View view, Editable content, int keyCode, KeyEvent event) { argument
61 return backspaceOrForwardDelete(view, content, keyCode, event, true);
64 private boolean backspaceOrForwardDelete(View view, Editable content, int keyCode, argument
73 if (deleteSelection(view, content)) {
79 if (deleteLine(view, content)) {
100 private boolean deleteSelection(View view, Editabl argument
115 deleteLine(View view, Editable content) argument
150 onKeyDown(View view, Editable content, int keyCode, KeyEvent event) argument
176 onKeyOther(View view, Editable content, KeyEvent event) argument
[all...]
H A DMovementMethod.java20 import android.view.KeyEvent;
21 import android.view.MotionEvent;
45 public boolean onKeyOther(TextView view, Spannable text, KeyEvent event); argument
/frameworks/base/core/java/android/view/inputmethod/
H A DCorrectionInfo.java17 package android.view.inputmethod;
H A DExtractedText.java17 package android.view.inputmethod;
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java17 package android.view.textservice;
/frameworks/base/core/java/com/android/internal/view/
H A DInputBindResult.java17 package com.android.internal.view;
H A DRotationPolicy.java17 package com.android.internal.view;
29 import android.view.IWindowManager;
30 import android.view.Surface;
31 import android.view.WindowManagerGlobal;
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSize.java17 package android.view;
24 import android.view.View;
25 import android.view.View.OnClickListener;
H A DViewGroupChildrenTest.java17 package android.view;
20 import android.view.ViewGroupChildren;
26 import android.view.View;
27 import android.view.ViewGroup;
32 * Exercises {@link android.view.ViewGroup}'s ability to add/remove children.
62 View view = createView("1");
63 mGroup.addView(view);
67 ViewAsserts.assertGroupContains(mGroup, view);
75 View view = createView(String.valueOf(i + 1));
76 mGroup.addView(view);
[all...]
H A DVisibilityTest.java17 package android.view;
19 import android.view.Visibility;
27 import android.view.View;
28 import static android.view.KeyEvent.*;
31 * Exercises {@link android.view.View}'s ability to change visibility between
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridScrollListener.java61 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { argument
66 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
H A DGridScrollListenerTest.java24 import android.view.KeyEvent;
102 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { argument
108 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListenerTest.java23 import android.view.KeyEvent;
97 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { argument
103 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
H A DWindowManagerImpl.java16 package com.android.layoutlib.bridge.android.view;
19 import android.view.Display;
20 import android.view.DisplayInfo;
21 import android.view.View;
22 import android.view.WindowManager;
45 public void addView(View arg0, android.view.ViewGroup.LayoutParams arg1) {
55 public void updateViewLayout(View arg0, android.view.ViewGroup.LayoutParams arg1) {

Completed in 496 milliseconds

1234567891011>>