Searched refs:ScrollView (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DBottomEditTextActivityPanScan.java26 import android.widget.ScrollView;
H A DBottomEditTextActivityResize.java26 import android.widget.ScrollView;
H A DManyEditTextActivityNoScrollPanScan.java30 import android.widget.ScrollView;
H A DInputTypeActivity.java24 import android.widget.ScrollView;
35 private ScrollView mScrollView;
43 mScrollView = new ScrollView(this);
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DScrollViewButtonsAndLabelsTest.java26 import android.widget.ScrollView;
33 private ScrollView mScrollView;
H A DRequestRectangleVisible.java25 import android.widget.ScrollView;
29 * A screen with some scenarios that exercise {@link ScrollView}'s implementation
H A DRequestRectangleVisibleTest.java27 import android.widget.ScrollView;
38 private ScrollView mScrollView;
60 mScrollView = (ScrollView) a.findViewById(R.id.scrollView);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java44 import android.widget.ScrollView;
516 ScrollView scroller = new ScrollView(this);
517 scroller.addView(view, new ScrollView.LayoutParams(ScrollView.LayoutParams.MATCH_PARENT,
518 ScrollView.LayoutParams.MATCH_PARENT));
/frameworks/base/core/java/android/widget/
H A DScrollView.java50 * allowing it to be larger than the physical display. A ScrollView
56 * <p>You should never use a ScrollView with a {@link ListView}, because
60 * list of items to fill up the infinite container supplied by ScrollView.
62 * takes care of its own scrolling, so does not require a ScrollView, but
66 * <p>ScrollView only supports vertical scrolling. For horizontal scrolling,
71 public class ScrollView extends FrameLayout { class in inherits:FrameLayout
76 private static final String TAG = "ScrollView";
104 * True if the user is currently dragging this ScrollView around. This is
164 public ScrollView(Context context) { method in class:ScrollView
168 public ScrollView(Contex method in class:ScrollView
172 public ScrollView(Context context, AttributeSet attrs, int defStyleAttr) { method in class:ScrollView
176 public ScrollView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { method in class:ScrollView
[all...]
H A DHorizontalScrollView.java61 * use either {@link ScrollView} or {@link ListView}.
66 private static final int ANIMATED_SCROLL_GAP = ScrollView.ANIMATED_SCROLL_GAP;
68 private static final float MAX_SCROLL_FACTOR = ScrollView.MAX_SCROLL_FACTOR;
98 * True if the user is currently dragging this ScrollView around. This is
1306 /* Offset from child's local coordinates to ScrollView coordinates */
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsVerticalScrollView.java34 import android.widget.ScrollView;
43 public class RecentsVerticalScrollView extends ScrollView
228 // We do this so the underlying ScrollView knows that it won't get
331 // TODO Add to (Vertical)ScrollView
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java57 import android.widget.ScrollView;
94 private ScrollView mScrollView;
577 mScrollView = (ScrollView) mWindow.findViewById(R.id.scrollView);
608 // We're just showing the ScrollView, set up listener.
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java88 import android.widget.ScrollView;
207 private ScrollView mScrollView;
513 protected ScrollView getScrollView() {
1004 while (parent != null && !(parent instanceof ScrollView)) {
1008 mScrollView = (ScrollView) parent;

Completed in 374 milliseconds

12