HeaderRecyclerView


Source link: https://github.com/Karumi/HeaderRecyclerView

HeaderRecyclerView

HeaderRecyclerView is an Android library created to be able to use RecyclerView.Adapter with a header and/or footer in a easy way. To use this library create your RecyclerView.Adapter classes extending from HeaderRecyclerViewAdapter.

Screenshots

Usage

To use HeaderRecyclerView in your application you have to follow this steps:

  • 1 - Create a class extending from HeaderRecyclerViewAdapter:
public class DragonBallAdapter extends HeaderRecyclerViewAdapter<RecyclerView.ViewHolder, DragonBallHeader, DragonBallCharacter, DragonBallFooter> {
  
  • 2 - Implement onCreateHeaderViewHolder, onCreateItemViewHolder, onCreateFooterViewHolder , onBindHeaderViewHolder, onBindItemViewHOlder and onBindFooterViewHolder to create your RecyclerView.ViewHolder instances and draw your rows:

If you don't use header or footer, you can ignore overriding corresponding createViewHolder and bindViewHolder method

@Override
protected RecyclerView.ViewHolder onCreateHeaderViewHolder(ViewGroup parent, int viewType) {

  LayoutInflater inflater = getLayoutInflater(parent);

  View headerView = inflater.inflate(R.layout.row_dragon_ball_header, parent, false);

  return new HeaderViewHolder(headerView);

}

 @Override
protected RecyclerView.ViewHolder onCreateItemViewHolder(ViewGroup parent, int viewType) {

  LayoutInflater inflater = getLayoutInflater(parent);

  View characterView = inflater.inflate(R.layout.row_dragon_ball_character, parent, false);

  return new CharacterViewHolder(characterView);

}

 @Override
protected RecyclerView.ViewHolder onCreateFooterViewHolder(ViewGroup parent, int viewType) {

  LayoutInflater inflater = getLayoutInflater(parent);

  View footerView = inflater.inflate(R.layout.row_dragon_ball_footer, parent, false);

  return new FooterViewHolder(footerView);

}

 @Override protected void onBindHeaderViewHolder(RecyclerView.ViewHolder holder, int position) {

  DragonBallHeader header = getHeader();

  HeaderViewHolder headerViewHolder = (HeaderViewHolder) holder;
  headerViewHolder.render(header);

}

 @Override protected void onBindItemViewHolder(RecyclerView.ViewHolder holder, int position) {

  DragonBallCharacter character = getItem(position);

  CharacterViewHolder characterViewHolder = (CharacterViewHolder) holder;
  characterViewHolder.render(character);

}

 @Override protected void onBindFooterViewHolder(RecyclerView.ViewHolder holder, int position) {

  DragonBallFooter footer = getFooter();

  FooterViewHolder footerViewHolder = (FooterViewHolder) holder;
  footerViewHolder.render(footer);

}
 
  • 3 - Configure your RecyclerView widget with this layout:
  List<DragonBallCharacter> characters = getDragonBallCharacters();

DragonBallHeader header = getHeader(characters);

DragonBallFooter footer = getFooter();

adapter.setHeader(header);

adapter.setFooter(footer);

adapter.setItems(characters);

recyclerView.setAdapter(adapter);
 
  • 4 - If you are using a GridLayoutManager instead of a LinearLayoutManager remember you'll have to configure the SpanSizeLookup used in the LayoutManager instance. If you are using HeaderRecyclerView with a GridLayoutManager you can create an instance of HeaderSpanSizeLookup and configure your LayoutManager instance:
  GridLayoutManager layoutManager = new GridLayoutManager(this, NUMBER_OF_COLUMNS);

HeaderSpanSizeLookup headerSpanSizeLookup = new HeaderSpanSizeLookup(adapter, layoutManager);

layoutManager.setSpanSizeLookup(headerSpanSizeLookup);
 
  • 5 - You can use following method to handle view life cycle event:
 @Override
  protected void onHeaderViewRecycled(VH holder) {

  
}

@Override
  protected void onItemViewRecycled(VH holder) {

  
}

@Override
  protected void onFooterViewRecycled(VH holder) {

  
}
 

Add it to your project

Add HeaderRecyclerView dependency to your build.gradle file

dependencies{

  compile 'com.karumi:headerrecyclerview:1.1.0' 
}
 

or to your pom.xml if you are using Maven instead of Gradle

<dependency>
  <groupId>com.karumi</groupId>
  <artifactId>headerrecyclerview</artifactId>
  <version>1.1.0</version>
  <type>aar</type> </dependency> 

Do you want to contribute?

Please, do it! We'd like to improve this library with your help :)

Libraries used in this project

  • [Robolectric] 2
  • [JUnit] 3
  • [Picasso] 4
  • [Nox] 5
  • [Mockito] 6
  • [Powermock] 7

External resources used in this project

  • FUNimation Productions, Ltd. ©

License

Copyright 2015 Karumi  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

An easy Android logging with Kotlin and Timber.

Simple to use library for android, Enabling to add a tooltip near any view with ease.

RxLifecycle extension methods for Groovy language.

Text Watermark creator on bitmap at any position.

Easy font usage in your Android XML layouts

  • Based on Data Binding
  • Written in Kotlin
  • Automatic initialization
  • Automatic font caching
  • Homogeneous android:font usage
  • Tiny size: 14 KB
  • Minimum Android SDK: 7
  • Available through jCenter

Plugin for AndroidAnnotations allowing to use it together with PermissionsDispatcher. All you have to do is to include it in your dependencies.

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