DiscreteScrollView


Source link: https://github.com/yarolegovich/DiscreteScrollView

DiscreteScrollView

The library is a RecyclerView-based implementation of a scrollable list, where current item is centered and can be changed using swipes. It is similar to a ViewPager, but you can quickly and painlessly create layout, where views adjacent to the currently selected view are partially or fully visible on the screen.

Gradle

Add this into your dependencies block.

compile 'com.yarolegovich:discrete-scrollview:1.3.2' 

Sample


Please see the sample app for examples of library usage.

Wiki

General

The library uses a custom LayoutManager to adjust items' positions on the screen and handle scroll, however it is not exposed to the client code. All public API is accessible through DiscreteScrollView class, which is a simple descendant of RecyclerView.

If you have ever used RecyclerView - you already know how to use this library. One thing to note - you should NOT set LayoutManager.

Usage:

  1. Add DiscreteScrollView to your layout either using xml or code:
  2. Create your implementation of RecyclerView.Adapter. Refer to the sample for an example, if you don't know how to do it.
  3. Set the adapter.
  4. You are done!
<com.yarolegovich.discretescrollview.DiscreteScrollView
android:id="@+id/picker"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dsv_orientation="horizontal|vertical" />  <!-- orientation is optional, default is horizontal -->
DiscreteScrollView scrollView = findViewById(R.id.picker);
 scrollView.setAdapter(new YourAdapterImplementation());

API

Layout

scrollView.setOrientation(Orientation o);
 //Sets an orientation of the view scrollView.setOffscreenItems(count);
 //Reserve extra space equal to (childSize * count) on each side of the view

Related to the current item:

scrollView.getCurrentItem();
 //returns adapter position of the currently selected item or -1 if adapter is empty. scrollView.scrollToPosition(int position);
 //position becomes selected scrollView.smoothScrollToPosition(int position);
 //position becomes selected with animated scroll scrollView.setItemTransitionTimeMillis(int millis);
 //determines how much time it takes to change the item on fling, settle or smoothScroll

Transformations

One useful feature of ViewPager is page transformations. It allows you, for example, to create carousel effect. DiscreteScrollView also supports page transformations.

scrollView.setItemTransformer(transformer);
  public interface DiscreteScrollItemTransformer {

  /** 
  * In this method you apply any transform you can imagine (perfomance is not guaranteed). 
  * @param position is a value inside the interval [-1f..1f]. In idle state: 
  * |view1|  |currentlySelectedView|  |view2| 
  * -view1 and everything to the left is on position -1; 
  * -currentlySelectedView is on position 0; 
  * -view2 and everything to the right is on position 1. 
  */
  void transformItem(View item, float position);
  
}

Because scale transformation is the most common, I included a helper class - ScaleTransformer, here is how to use it:

cityPicker.setItemTransformer(new ScaleTransformer.Builder()
.setMaxScale(1.05f)
 .setMinScale(0.8f)
 .setPivotX(Pivot.X.CENTER) // CENTER is a default one
.setPivotY(Pivot.Y.BOTTOM) // CENTER is a default one
.build());

You may see how it works on GIFs.

Slide through multiple items

To allow slide through multiple items call:

scrollView.setSlideOnFling(true);

The default threshold is set to 2100. Lower the threshold, more fluid the animation. You can adjust the threshold by calling:

scrollView.setSlideOnFlingThreshold(value);

Infinite scroll

Infinite scroll is implemented on the adapter level:

InfiniteScrollAdapter wrapper = InfiniteScrollAdapter.wrap(yourAdapter);
 scrollView.setAdapter(wrapper);

An instance of InfiniteScrollAdapter has the following useful methods:

int getRealItemCount();
  int getRealCurrentPosition();
  int getRealPosition(int position);
  /*  * You will probably want this method in the following use case:  * int targetAdapterPosition = wrapper.getClosestPosition(targetPosition);
  * scrollView.smoothScrollTo(targetAdapterPosition);
  * To scroll the data set for the least required amount to reach targetPosition.  */ int getClosestPosition(int position);
 

Currently InfiniteScrollAdapter handles data set changes inefficiently, so your contributions are welcome.

Callbacks

  • Scroll state changes:
scrollView.addScrollStateChangeListener(listener);
 scrollView.removeScrollStateChangeListener(listener);
  public interface ScrollStateChangeListener<T extends ViewHolder> {

 void onScrollStart(T currentItemHolder, int adapterPosition);
 //called when scroll is started, including programatically initiated scroll

void onScrollEnd(T currentItemHolder, int adapterPosition);
 //called when scroll ends
/** 
* Called when scroll is in progress.  
* @param scrollPosition is a value inside the interval [-1f..1f], it corresponds to the position of currentlySelectedView. 
* In idle state: 
* |view1|  |currentlySelectedView|  |view2| 
* -view1 is on position -1; 
* -currentlySelectedView is on position 0; 
* -view2 is on position 1. 
* @param currentIndex - index of current view 
* @param newIndex - index of a view which is becoming the new current 
* @param currentHolder - ViewHolder of a current view 
* @param newCurrent - ViewHolder of a view which is becoming the new current 
*/
void onScroll(float scrollPosition, int currentIndex, int newIndex, @Nullable T currentHolder, @Nullable T newCurrentHolder);
  
}
  • Scroll:
scrollView.addScrollListener(listener);
 scrollView.removeScrollListener(listener);
  public interface ScrollListener<T extends ViewHolder> {

//The same as ScrollStateChangeListener, but for the cases when you are interested only in onScroll()
void onScroll(float scrollPosition, int currentIndex, int newIndex, @Nullable T currentHolder, @Nullable T newCurrentHolder);
 
}
  • Current selection changes:
scrollView.addOnItemChangedListener(listener);
 scrollView.removeOnItemChangedListener(listener);
  public interface OnItemChangedListener<T extends ViewHolder> {

/** 
* Called when new item is selected. It is similar to the onScrollEnd of ScrollStateChangeListener, except that it is  
* also called when currently selected item appears on the screen for the first time. 
* viewHolder will be null, if data set becomes empty  
*/
void onCurrentItemChanged(@Nullable T viewHolder, int adapterPosition);
  
}

Special thanks

Thanks to Tayisiya Yurkiv for sample app design and beautiful GIFs.

License

Copyright 2017 Yaroslav Shevchuk  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

This repository showcases and compares different architectural patterns that can be used to build Android apps. The exact same sample app is built three times using the following approaches:

  • Standard Android: traditional approach with layouts, Activities/Fragments and Model.
  • MVP: Model View Presenter.
  • MVVM: Model View ViewModel with data binding.

Densinator is a Bash script, that scans your current directory looking for image files, and generates the drawables for all Android densities.

A custom widget that looks like a task manager on Android 5.0.

A simple rotatable menu for Android.

Sliding Selection List

Features:

  • level based menu with recyclerview and viewpager
  • custom transitions
  • multiple selection and single selection combinations

A library to show view for comments for Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes