Sectioned RecyclerView


Source link: https://github.com/afollestad/sectioned-recyclerview

Sectioned RecyclerView

Sectioned RecyclerView allows you to easily split a RecyclerView into sections with headers and optional footers. Headers can be expanded and collapsed, you can even hide empty sections.


Gradle Dependency

The Gradle dependency is available via jCenter. jCenter is the default Maven repository used by Android Studio.

Dependency

Add this to your module's build.gradle file:

dependencies {

  // ... other dependencies
  compile 'com.afollestad:sectioned-recyclerview:0.5.0' 
}

Adapter

Here's a basic example:

public class MainAdapter extends SectionedRecyclerViewAdapter<MainAdapter.MainVH> {

 @Override
public int getSectionCount() {

  return 20; // number of sections, you would probably base this on a data set such as a map

}

 @Override
public int getItemCount(int sectionIndex) {

  return 8; // number of items in section, you could also pull this from a map of lists

}

 @Override
public void onBindHeaderViewHolder(MainVH holder, int section, boolean expanded) {

  // Setup header view

}

 @Override
public void onBindViewHolder(MainVH holder, int section, int relativePosition, int absolutePosition) {

  // Setup non-header view.
  // 'section' is section index.
  // 'relativePosition' is index in this section.
  // 'absolutePosition' is index out of all items, including headers and footers.
  // See sample project for a visual of how these indices work.

}

@Override
public void onBindFooterViewHolder(MainVH holder, int section) {

  // Setup footer view, if footers are enabled (see the next section)

}

 @Override
public MainVH onCreateViewHolder(ViewGroup parent, int viewType) {

  // Change inflated layout based on type
  int layoutRes;
  switch(viewType) {

 case VIEW_TYPE_HEADER:

layoutRes = R.layout.header;

break;

 case VIEW_TYPE_FOOTER:

// if footers are enabled

layoutRes = R.layout.footer;

break;

 default:

layoutRes = R.layout.normal_item;

break;
  
}

  View v = LayoutInflater.from(parent.getContext())

.inflate(layoutRes, parent, false);

  return new MainVH(v);

}

 public static class MainVH extends SectionedViewHolder

implements View.OnClickListener {

public MainVH(View itemView) {

 super(itemView);

 // Setup view holder. You'd want some views to be optional, e.g. the 

 // header/footer will have views that normal item views do or do not have.

 itemView.setOnClickListener(this);

  
}

 @Override
  public void onClick(View view) {

 // SectionedViewHolder exposes methods such as:

 boolean isHeader = isHeader();

 boolean isFooter = isFooter();

 ItemCoord position = getRelativePosition();

 int section = position.section();

 int relativePos = position.relativePos();

  
}

}
 
}

Enabling Footers

Enabling footers is simple:

adapter.shouldShowFooters(true);

You just have to make sure you handle footers in your view holder creation and view holder binding.


Expanding and Collapsing Sections

Expanding and collapsing sections is easy:

MainAdapter adapter = // ...  adapter.expandSection(int);
  adapter.collapseSection(int);
  adapter.toggleSectionExpanded(int);
  adapter.expandAllSections();
  adapter.collapseAllSections();
  boolean isExpanded = adapter.isSectionExpanded(int);

Hiding Empty Sections

You can tell the adapter to hide sections which have no items.

MainAdapter adapter = // ...  adapter.shouldShowHeadersForEmptySections(false);

Notifying Adapter of Section Changes

Like notifyDataSetChanged(), notifyItemInserted(int), notifyItemRemoved(int) (etc.), the sectioned adapter provides a method called notifySectionChanged(int). It notifies the adapter that every item in that section has changed, rather than every item in the whole adapter. onBindViewHolder will be called again for each item in the section.

You should not use this method when a section has been added or removed. You should always use notifyDataSetChanged() for that to avoid data corruption in the adapter.


Layout Manager

If you're using a LinearLayoutManager, you're all set. If you're using a GridLayoutManager, you need to tell the adapter:

GridLayoutManager manager = // ...  adapter.setLayoutManager(manager);

This is vital to getting headers to span all columns.

Resources

Another sliding menu base on DrawerLayout.

AutoTypeTextView is simple library which add encryption, decryption and texting animations.

Android library allowing to preserve instance of any object across orientation changes.

Android Library for auto-formatting money on EditText.

Restito is a tool which is inspired by mockito and functionally is diametrically opposite to the Rest Assured.

Restito provides a DSL to:

  • Mimic rest server behavior
  • Record HTTP calls to the server
  • Perform verification against happened calls

Testing and validation of REST services in Java is harder than in dynamic languages such as Ruby and Groovy. REST Assured brings the simplicity of using these languages into the Java domain.

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