EasyRecyclerAdapters


Source link: https://github.com/CarlosMChica/easyrecycleradapters

EasyRecyclerAdapters

The code brings up an easy way of using recyclerView, with the new recycler adapters. It also offers out of the box multi view types inside the same adapter and a DividerItemDecoration that handles the drawing of the divider in the recycler view.


Gradle Dependency

dependencies {

  compile 'com.github.cmc00022:easyrecycleradapters:1.1.1' 
}

Info: The lib is still under development and might suffer changes.

How to use

You can find a sample project that shows up how to use.

The sample has three fragments, each one illustrates how to use the features included on the lib Customizations can also be found on the sample code (custom divider, foreground and background selectors(Have a look to item views layouts in the sample code))

Here's an example of basic use:

Extend from EasyViewHolder and provide a type for the data used on this particular EasyViewHolder. Call super with the layout for your EasyViewHolder Bind your EasyViewHolder with its data.

 public ImageEasyViewHolder(Context context, ViewGroup parent) {

super(context, parent, R.layout.image_item);

this.context = context;
  
}

@Override
  public void bindTo(ImageData item) {

Picasso.with(context)

  .load(item.getImageUrl())

  .placeholder(R.drawable.placeholder)

  .into(image);

  
}

1.- Create your adapter

Single view EasyRecyclerAdapter

 private EasyRecyclerAdapter adapter;
  adapter = new EasyRecyclerAdapter(getActivity(), ImageData.class, ImageEasyViewHolder.class);

  adapter.setOnClickListener(this);

  adapter.setOnLongClickListener(this);

Multi view EasyRecyclerAdapter (bind each EasyViewHolder class to it's data type class)

 private EasyRecyclerAdapter adapter;
  adapter = new EasyRecyclerAdapter(getActivity());

  adapter.bind(ImageData.class, ImageEasyViewHolder.class);

  adapter.bind(TextData.class, TextDataEasyViewHolder.class);
 

Set click listener methods for callbacks on items clicks and long clicks


  adapter.setOnClickListener(this);

adapter.setOnLongClickListener(this);

Call the methods provided by EasyRecyclerAdapter to interact with the data set

 public void add(Object object);

public void addAll(List<?> objects);

public boolean update(Object data);

public boolean update(Object data, int position);

public void remove(Object data);

public void remove(int position);

public Object get(int position);

public int getIndex(Object item);

public void clear();
 

2.- EasyRecyclerManager version

For fully recyclerView customization you have EasyRecyclerManager. It's easy to use and have a lot of features out of the box for controlling your recycler view.

 //Create your EasyRecyclerAdapter
  EasyRecyclerAdapter adapter = new EasyRecyclerAdapter(getActivity());

  adapter.bind(ImageData.class, ImageEasyViewHolder.class);

  adapter.bind(TextData.class, TextDataEasyViewHolder.class);

  //Create your EasyRecyclerViewManager.Builder and pass your recyclerView and your EasyRecyclerAdapter
  easyRecyclerViewManager = new EasyRecyclerViewManager.Builder(recyclerView, adapter)

 //layoutManager (If none, LinearLayoutManager is used)

 .layoutManager(new GridLayoutManager(getActivity(), getResources().getInteger(R.integer.grid_columns)))

 //clickListeners

 .clickListener(this)

 .longClickListener(this)

 //divider (If none, default is used)

 .divider(R.drawable.custom_divider)

 //TextView defined on your layout, to show up when loading your data or the recyclerView has not data

 //If none, None of the related builder params are used

 .emptyLoadingListTextView(emptyList)

 //TextView loading text(If none, "Loading..." is used

 .loadingListText(R.string.loading)

 //TextView loading tex color(If none, default is used

 .loadingListTextColor(R.color.accentColor)

 //TextView empty list tex color(If none, "No data" is used

 .emptyListText(R.string.empty_list)

 //TextView empty list tex color(If none, default is used

 .emptyListTextColor(R.color.accentColor)

 //LoadingView

 .loadingView(View loadingView)

 //emptyView

 .emptyView(View emptyView)

 //Misc

 .recyclerViewClipToPadding(false)

 .recyclerViewHasFixedSize(true)

 .build();

Custom ViewHolderFactory

If you need to pass extra parameters in order to display the data associated to a ViewHolder, create a custom ViewHolderFactory and create your ViewHolders as follows.

public class CustomViewHolderFactory extends BaseEasyViewHolderFactory {

public CustomViewHolderFactory(Context context) {

super(context);

//Extra parameters for your ViewHolders

this.picasso = Picasso.with(context);

  
}

@Override
  public EasyViewHolder create(Class valueClass, ViewGroup parent) {

  //Create ViewHolder for each dataClass

if (valueClass == ImageData.class) {

 //Using extra parameters as needed

 return new ImageEasyViewHolder(context, parent, picasso);

}
 else if (valueClass == TextData.class) {

 return new TextDataEasyViewHolder(context, parent);

}

return null;
  
}
  
}

//Create the adapter and pass the custom ViewHolderFactory
  //Bind the data as normally.
  adapter = new EasyRecyclerAdapter(

 new CustomViewHolderFactory(getActivity()),

 ImageData.class,

 ImageEasyViewHolder.class);
 

Check out the sample layouts to set selectors on each EasyViewHolder view You need to define two items in your styles


Define your selectors

Check out the sample layouts to set selectors on each EasyViewHolder view


Proguard

-keep public class * extends com.carlosdelachica.easyrecycleradapters.adapter.EasyViewHolder -keepclassmembers class * extends com.carlosdelachica.easyrecycleradapters.adapter.EasyViewHolder {
  public <init>(android.content.Context);
  public <init>(android.content.Context, android.view.ViewGroup);
 
}
 

Developed by

Christian Panadero Martinez - http://panavtec.me - @PaNaVTEC

Carlos Morera de la Chica - @cmc00022

License

Copyright 2014 Carlos Morera de la Chica.  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

FabButton (FabProgress) is an Android Circular floating action button with intergrated progress indicator ring as per material design docs

An indicator like Morning Routine guide.It was originally based on BezierDemo.

Gradle plugin for j2objc (Java to Objective-C translation tool).

Working with Spans is ugly and difficult to manage, it's like working with a goblin of Moria. Don't understand the Spans? With AwesomeText you will only have to work with the classic Adapter Pattern. All the ease and potential of a pattern you already know how to use.

AndroidRandomColor library allows to generate random colors on Android.

IconButton is an Android button widget that allows you to center both the button's text and an icon.

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