Searched defs:scrollView (Results 1 - 3 of 3) sorted by path

/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
H A DR$id.classR.java package com.android.layoutlib.test.myapplication public final com.android. ...
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DScrollViewScrollHandlingDelegate.java45 @Nullable ScrollView scrollView) {
47 if (scrollView instanceof BottomScrollView) {
48 mScrollView = (BottomScrollView) scrollView;
50 Log.w(TAG, "Cannot set non-BottomScrollView. Found=" + scrollView);
43 ScrollViewScrollHandlingDelegate( @onNull RequireScrollMixin requireScrollMixin, @Nullable ScrollView scrollView) argument
/frameworks/support/wear/src/android/support/wear/widget/drawer/
H A DScrollViewFlingWatcher.java55 ScrollViewFlingWatcher(FlingListener listener, ScrollView scrollView) { argument
57 mScrollView = new WeakReference<>(scrollView);
66 ScrollView scrollView = mScrollView.get();
67 if (scrollView != null) {
68 scrollView.setOnScrollChangeListener(this);
86 ScrollView scrollView = mScrollView.get();
87 if (scrollView != null) {
88 scrollView.setOnScrollChangeListener(null);
89 mListener.onFlingComplete(scrollView);

Completed in 312 milliseconds