ExpandableAdapter


Source link: https://github.com/emerap/ExpandableAdapter

ExpandableAdapter

Customizable adapter for RecyclerView

Setup

Gradle

compile 'com.github.emerap:expandable-adapter:0.0.4' 

Maven

<dependency>
<groupId>com.github.emerap</groupId>
<artifactId>expandable-adapter</artifactId>
<version>0.0.4</version>
<type>pom</type> </dependency> 

Ivy

<dependency org='com.github.emerap' name='expandable-adapter' rev='0.0.4'>
<artifact name='expandable-adapter' ext='pom' ></artifact> </dependency> 

Features

  • Interface StateConfig for saving and restore items state.
  • Get and set any object to Section and Item from via them interfaces.
  • Create Model view from list of object (any types).
  • Interface ModelSwitch for switch between ModelView objects.
  • Predefined SectionViewHolder with title, icon and count fields.
  • Empty data placeholder (override onBindEmptyDataPlaceholder and getEmptyDataViewHolder)
  • Predefined EmptyDataViewHolder with message and image fields.

Examples

Customize adapter

  • Implement onCreateViewHolder.
  • Bind your data to UI.
import com.emerap.library.ExpandableAdapter.ExpandableAdapter; import com.emerap.library.ExpandableAdapter.ExpandableViewHolder; import com.emerap.library.ExpandableAdapter.ItemInterface; import com.emerap.library.ExpandableAdapter.SectionInterface;  public class CustomAdapter extends ExpandableAdapter {

@Override
  public void onBindSection(ExpandableViewHolder holder, SectionInterface section) {

}

@Override
  public void onBindItem(ExpandableViewHolder holder, String title, ItemInterface item) {

}

 @Override
  public ExpandableViewHolder getSectionViewHolder(ViewGroup parent) {

return DefaultSectionViewHolder.newInstance(parent);

  
}

@Override
  public ExpandableViewHolder getItemViewHolder(ViewGroup parent) {

View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.expandeable_recycler_item, parent, false);

return new ItemViewHolder(view);

  
}
 
}
 

See MainActivity.java from app module

Resources

osmdroid is a (almost) full/free replacement for Android's MapView (v1 API) class. It also includes a modular tile provider system with support for numerous online and offline tile sources and overlay support with built-in overlays for plotting icons, tracking location, and drawing shapes.

A carefully crafted Android framework that includes: DI, ORM, EventBus, JSON (de)serialization feature, improved AsyncTask & IntentService, Logger, RESTClient, ImageFetcher, and a lot of utils.

Android common lib, include ImageCache, HttpCache, DropDownListView, DownloadManager, Utils and so on.

An HTTP & SPDY client for Android and Java applications.

Autobahn|Android is a subproject of the Autobahn project and provides an open-source implementation of WebSocket Protocol and Web Application Messaging Protocol (WAMP).

Android ListView with drag and drop reordering.

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