We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi thanks for your amazing lib.
i want to make something like "SlidingUpScrollViewActivity". i copy code from sample project but SlidingUpBaseActivity<ObservableScrollView> not found and cannot extent my class. public class MyClass extends SlidingUpBaseActivity<ObservableScrollView> implements ObservableScrollViewCallbacks { @Override protected int getLayoutResId() { return R.layout.activity_showapp; } @Override protected ObservableScrollView createScrollable() { ObservableScrollView scrollView = (ObservableScrollView) findViewById(R.id.scroll); scrollView.setScrollViewCallbacks(this); return scrollView; } @Override public void onScrollChanged(int scrollY, boolean firstScroll, boolean dragging) { } @Override public void onDownMotionEvent() { } @Override public void onUpOrCancelMotionEvent(ScrollState scrollState) { } }
i want to make something like "SlidingUpScrollViewActivity".
"SlidingUpScrollViewActivity"
i copy code from sample project but SlidingUpBaseActivity<ObservableScrollView> not found and cannot extent my class.
SlidingUpBaseActivity<ObservableScrollView>
public class MyClass extends SlidingUpBaseActivity<ObservableScrollView> implements ObservableScrollViewCallbacks { @Override protected int getLayoutResId() { return R.layout.activity_showapp; } @Override protected ObservableScrollView createScrollable() { ObservableScrollView scrollView = (ObservableScrollView) findViewById(R.id.scroll); scrollView.setScrollViewCallbacks(this); return scrollView; } @Override public void onScrollChanged(int scrollY, boolean firstScroll, boolean dragging) { } @Override public void onDownMotionEvent() { } @Override public void onUpOrCancelMotionEvent(ScrollState scrollState) { } }
problem solved.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi
thanks for your amazing lib.
problem solved.
The text was updated successfully, but these errors were encountered: