HFRecyclerView


Source link: https://github.com/lopspower/HFRecyclerView

HFRecyclerView

This is an Android library allowing to add Header and/or Footer in your RecyclerView in the simplest way possible.

USAGE

To add Header and/or Footer in your RecyclerView you need to add HFRecyclerView library in your project or you can also grab it from Gradle:

compile 'com.mikhaellopez:hfrecyclerview:1.0.0'

JAVA

  1. You need to create a custom RecyclerView.Adapter for your RecyclerView which extends HFRecyclerView with the object type of your choice (in my example, my object type is MyDataObject :

    public class ExampleAdapter extends HFRecyclerView<MyDataObject> {
    
      //... 
    }
    
  2. In your custom adapter, add a constructor. The first param in super constructor is your data list. The second is a flag to determine if you want to add a header, and the last to add a footer.

    public class ExampleAdapter extends HFRecyclerView<MyDataObject> {
    
    public ExampleAdapter(List<MyDataObject> data) {
    
    // With Header & With Footer
    
    super(data, true, true);
    
      
    }
    
    //... 
    }
    
  3. After that, override 3 methods and create 3 class which extend RecyclerView.ViewHolder in order to add the viewHolder for your Item, your Header and your Footer:

    public class ExampleAdapter extends HFRecyclerView<MyDataObject> {
    
     //...
    
     //region Override Get ViewHolder
      @Override
      protected RecyclerView.ViewHolder getItemView(LayoutInflater inflater, ViewGroup parent) {
    
    return new ItemViewHolder(inflater.inflate(R.layout.item_example, parent, false));
    
      
    }
    
    @Override
      protected RecyclerView.ViewHolder getHeaderView(LayoutInflater inflater, ViewGroup parent) {
    
    return new HeaderViewHolder(inflater.inflate(R.layout.item_header, parent, false));
    
      
    }
    
    @Override
      protected RecyclerView.ViewHolder getFooterView(LayoutInflater inflater, ViewGroup parent) {
    
    return new FooterViewHolder(inflater.inflate(R.layout.item_footer, parent, false));
    
      
    }
    
      //endregion
    
    //region ViewHolder Header and Footer
      class ItemViewHolder extends RecyclerView.ViewHolder {
    
    TextView text;
    
     public ItemViewHolder(View itemView) {
    
     super(itemView);
    
     text = (TextView)itemView.findViewById(R.id.text);
    
    }
    
      
    }
    
    class HeaderViewHolder extends RecyclerView.ViewHolder {
    
    public HeaderViewHolder(View itemView) {
    
     super(itemView);
    
    }
    
      
    }
    
    class FooterViewHolder extends RecyclerView.ViewHolder {
    
    public FooterViewHolder(View itemView) {
    
     super(itemView);
    
    }
    
      
    }
    
      //endregion 
    }
    
  4. Finally, you must override onBindViewHolder method to manage your views as you like:

    public class ExampleAdapter extends HFRecyclerView<MyDataObject> {
    
    //...
    
    @Override
      public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    
    if (holder instanceof ItemViewHolder) {
    
     ItemViewHolder itemViewHolder = (ItemViewHolder) holder;
    
     MyDataObject data = getItem(position);
    
     itemViewHolder.text.setText(data);
    
    }
     else if (holder instanceof HeaderViewHolder) {
    
     
    }
     else if (holder instanceof FooterViewHolder) {
    
     
    }
    
      
    }
    
     //... 
    }
    

ℹ? You can see a full example here : ExampleAdapter and MainActivity

LICENCE

CircularImageView by Lopez Mikhael is licensed under a Apache License 2.0. Based on a work at @hister.

Resources

A library which provides an RxJava wrapper for google maps.

RxFingerprint wraps the Android Fingerprint APIs to authenticate your users and encrypt their data with their fingerprints!

A custom Circular ProgressBar and Line ProgressBar for Android.

An extension to the Snackbar view available at the Android Design Support Library.

Restaurant wraps the Snackbar implementation to easily allow more customization. With Restaurant you can change the text and background color of the Snackbar just calling a method. Restaurant can also detect the correct view to attach the Snackbar just receiving the activity.

This project aims to provide an ultimate and flexible image cropping experience.

Be sure that your user is awake before disturbing it with soundy and vibrant notifications!

Before this library, QuitNow! and lots of apps were sending notifications when the user was sleeping... and HEY! That makes people angry.

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