RecyclerViewCursorAdapter


Source link: https://github.com/androidessence/RecyclerViewCursorAdapter

RecyclerView CursorAdapter


This library is an adaptation of RecyclerView.Adapter that uses a CursorAdapter as its underlying data source. The benefit of this is that it now you can populate your RecyclerView with a CursorLoader, something that was previously only possible using a CursorAdapter and ListView.

Usage


To add the library to your project, just include the following dependency in your build.gradle file:

compile 'com.androidessence:recyclerviewcursoradapter:1.0.0'

Implementation


In the same way that RecyclerView.Adapter requires a generic RecyclerView.ViewHolder, this adapter uses a RecyclerViewCursorViewHolder. It extends from RecyclerView.ViewHolder; The only difference is that it must implement a bindCursor() method which helps simplify the process of binding Cursor data to a ViewHolder object.

If you are using a single ViewHolder for your Adapter (which is all that is easily supported in the current version), you can make use of the setupCursorAdapter() function to easily implement the newView and bindView methods of the underlying CursorAdapter. All you need to do is specify the initial values for the CursorAdapter, and the layout resource for the root view of your ViewHolder. See the sample project for an example.

In onCreateViewHolder, you can return a ViewHolder that is defined by the view returned by mCursorAdapter.newView(). In onBindViewHolder(), it is your responsibility to make sure the CursorAdapter's Cursor is moved to the proper position, and that the ViewHolder is set prior to calling bindView in the CursorAdapter. Again, the sample project has snippets that do all of this.

Use the swapCursor() function to exchange the data inside the Adapter. This can be done using a CursorLoader, or using the result of any queries you run manually.

Currently there is support to easily control a RecyclerViewCursorAdapter that uses a single ViewHolder. However, nothing restricts the user from using multiple View types; Just don't use setupCursorAdapter() and instead instantiate the CursorAdapter in your own way and adjust onBindViewHolder and onCreateViewHolder accordingly.

Inspiration


Inspiration for this library came from a beautiful StackOverflow answer by user nbtk.

Contributors


Adam McNeilly

Resources

Auto resizable EditText.

Android library for swiping to close your layout.

Android podcast app with simplified navigation and lightweight interface.

A beautiful Tinder like card deck & Captain Train like toolbar.

Frodo is an android library inspired by Hugo, mainly used for logging RxJava Observables and Subscribers outputs on the logcat. It generates and weaves code based on annotations only on debug versions of the application where the plugin is applied, for instance, it is safe to persist any Frodo annotation in the codebase.

An android color picker with changeable color drawable for easy styling.

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