Searched refs:NestedScrollView (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DNestedScrollViewFlingWatcher.java25 import androidx.core.widget.NestedScrollView;
26 import androidx.core.widget.NestedScrollView.OnScrollChangeListener;
33 * {@link FlingWatcher} implementation for {@link NestedScrollView NestedScrollViews}.
35 * Because {@link NestedScrollView} does not provide a way to listen to the scroll state, there's no
48 private final WeakReference<NestedScrollView> mNestedScrollView;
56 NestedScrollViewFlingWatcher(FlingListener listener, NestedScrollView nestedScrollView) {
67 NestedScrollView nestedScrollView = mNestedScrollView.get();
75 public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX,
86 NestedScrollView nestedScrollView = mNestedScrollView.get();
H A DFlingWatcherFactory.java26 import androidx.core.widget.NestedScrollView;
98 } else if (view instanceof NestedScrollView) {
99 return new NestedScrollViewFlingWatcher(mListener, (NestedScrollView) view);
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewTest.java42 * So far these tests only cover {@code NestedScrollView}'s implementation of
43 * {@link NestedScrollingParent2} and the backwards compatibility of {@code NestedScrollView}'s
53 private NestedScrollView mNestedScrollView;
263 new NestedScrollView.OnScrollChangeListener() {
266 public void onScrollChange(NestedScrollView v, int scrollX, int scrollY,
364 mNestedScrollView = new NestedScrollView(mActivityTestRule.getActivity());
370 NestedScrollView.LayoutParams childLayoutParams =
371 new NestedScrollView.LayoutParams(100, 100);
H A DNestedScrollViewNestedScrollingParentTest.java50 * So far these tests only cover {@code NestedScrollView}'s implementation of
51 * {@link NestedScrollingParent2} and the backwards compatibility of {@code NestedScrollView}'s
61 private NestedScrollView mNestedScrollView;
71 mNestedScrollView = new NestedScrollView(mActivityTestRule.getActivity());
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java65 * NestedScrollView is just like {@link android.widget.ScrollView}, but it supports acting
69 public class NestedScrollView extends FrameLayout implements NestedScrollingParent2, class in inherits:FrameLayout,NestedScrollingParent2,NestedScrollingChild2,ScrollingView
75 private static final String TAG = "NestedScrollView";
95 void onScrollChange(NestedScrollView v, int scrollX, int scrollY,
188 public NestedScrollView(@NonNull Context context) { method in class:NestedScrollView
192 public NestedScrollView(@NonNull Context context, @Nullable AttributeSet attrs) { method in class:NestedScrollView
196 public NestedScrollView(@NonNull Context context, @Nullable AttributeSet attrs, method in class:NestedScrollView
411 final NestedScrollView.LayoutParams lp = (LayoutParams) child.getLayoutParams();
496 final NestedScrollView.LayoutParams lp = (LayoutParams) child.getLayoutParams();
569 final NestedScrollView
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSScrollLayout.java20 import android.support.v4.widget.NestedScrollView;
39 public class QSScrollLayout extends NestedScrollView {
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAlertController.java61 import androidx.core.widget.NestedScrollView;
99 NestedScrollView mScrollView;
591 new NestedScrollView.OnScrollChangeListener() {
593 public void onScrollChange(NestedScrollView v, int scrollX,
719 mScrollView = (NestedScrollView) mWindow.findViewById(R.id.scrollView);

Completed in 168 milliseconds