NoListAdapter


Source link: https://github.com/TellH/NoListAdapter

NoListAdapter

A more elegant and easy way to build an multifunctional adapter for ListView or RecyclerView in Android. ###Why NoListAdapter? Using this library, you don't even have to write an adapter for a ListView or RecyclerView. When using RecyclerView? I found it is not convenient and elegant to realise multi-type item. Moreover, there is no native way to set empty view, header, footer, load more footer and error view in RecyclerView. Although we have many implementations, I think adapter is quite qualified for those task.

What it can do?

  • Easy to Add Multi-type item to RecyclerView and ListView.
  • Easy to set empty view in RecyclerView.
  • Easy to add header and footer in RecyclerView.
  • Easy to set Load More Footer in RecyclerView.
  • Easy to show or hide error view in RecyclerView.

How to do?

SetUp

In project build.gradle

allprojects {

  repositories {

maven {
 url "https://jitpack.io" 
}

  
}
 
}

In app module build.gradle

dependencies {
  //if you want to use in listview, add this line.
  compile 'com.github.TellH.NoListAdapter:nolistadapter-lv:1.0.2'
  //if you want to use in recyclerview, add this line.
  compile 'com.github.TellH.NoListAdapter:nolistadapter-rv:1.0.2' 
}

Quick Start

1 . Make your data entity class extends DataBean and attach item layout id to it. like:

public class User extends DataBean {

  private String login;
  private int id;
  //...
  @Override
  public int getItemLayoutId(IListAdapter adapter) {

return R.layout.item_user;
  
}

  // setter and getter omitted.
  //... 
}

2 . Create ViewBinder and VIewHolder for an item type. i.e. for RecyclerView

public class UserRecyclerViewBinder extends RecyclerViewBinder<User, UserRecyclerViewBinder.ViewHolder> {

  @Override
  public ViewHolder provideViewHolder(View itemView) {

return new UserRecyclerViewBinder.ViewHolder(itemView);

  
}

@Override
  public void bindView(IListAdapter adapter, UserRecyclerViewBinder.ViewHolder holder, int position, User entity) {

holder.tvId.setText(String.valueOf(entity.getId()));

holder.tvName.setText(entity.getLogin());

holder.tvUrl.setText(entity.getHtml_url());

  
}

@Override
  public int getItemLayoutId(IListAdapter adapter) {

return R.layout.item_user;
  
}

protected class ViewHolder extends RecyclerViewBinder.ViewHolder {

public TextView tvId;

public TextView tvName;

public TextView tvUrl;

public ViewHolder(View rootView) {

 super(rootView);

 this.tvId = findViewById(R.id.tv_id);

 this.tvName = findViewById(R.id.tv_name);

 this.tvUrl = findViewById(R.id.tv_url);

}

}
 
}

Creatre ViewBinder sample for ListView

3 . Build an Adapter. i.e. for RecyclerView


  List<User> userList = response.getItems();

adapter = RecyclerViewAdapter.builder()

  .displayList(userList)

  .addItemType(new UserRecyclerViewBinder())

  .build();

list.setAdapter(adapter);

Build an Adapter for ListView

Multi-Type Item

Just Create DataBean and ViewBinder for each Item type and add it to your Adapter Builder.


  List<User> userList = response.getItems();

List<DataBean> displayList = new ArrayList<>();

for (int i = 0; i < userList.size();
 i++) {

 displayList.add(new ImageItem(userList.get(i).getAvatar_url()));

 displayList.add(userList.get(i));

}

adapter = RecyclerViewAdapter.builder()

  .displayList(displayList)

  .addItemType(new UserRecyclerViewBinder()) //different item type have different ways to bind data to ViewHolder.

  .addItemType(new ImageItemRecyclerViewBinder())

  .build();

Empty View, Header and Footer

Create ViewBinder

public class EmptyBinder extends EmptyRecyclerViewBinder<EmptyBinder.ViewHolder> public class HeaderBinder extends HeaderRecyclerViewBinder<HeaderBinder.ViewHolder> public class FooterBinder extends FooterRecyclerViewBinder<FooterBinder.ViewHolder>

Add it to your Adapter Builder

adapter = RecyclerViewAdapter.builder()

  //...

  .setEmptyView(new EmptyBinder())

  .addHeader(new HeaderBinder("I am the first header! ????"))

  .addHeader(new HeaderBinder("I am the second header! ????"))

  .addFooter(new FooterBinder("------I am the footer!------"))

  .addFooter(new FooterBinder("------???????-------"))

  //...

  .build();

If you just want to show Empty View, use EasyEmptyRecyclerViewBinder

.setEmptyView(new EasyEmptyRecyclerViewBinder(R.layout.empty_view))

Error View

Create ViewBinder

public class ErrorBinder extends ErrorRecyclerViewBinder<ErrorBinder.ViewHolder>

Add it to your Adapter Builder

.setErrorView(new ErrorBinder(this))

Then show and hide Error View if you want.

adapter.showErrorView(recyclerView);
 adapter.hideErrorView(recyclerView);

Load More Footer

Create Footer ViewBinder, Check out more information in this sample.

public class LoadMoreFooterBinderRecycler extends FooterRecyclerViewBinder<LoadMoreFooterBinderRecycler.ViewHolder> {

  @Override
  protected void bindFooter(IListAdapter adapter, ViewHolder holder, int position) {

FooterLoadMoreAdapterWrapper adapterWrapper = (FooterLoadMoreAdapterWrapper) adapter;

if (adapter.getDisplayList().size() == 0) {

 holder.progressBar.setVisibility(View.INVISIBLE);

 holder.tvFooter.setText("No Data");

 return;

}

switch (adapterWrapper.getFooterStatus()) {

 case PULL_TO_LOAD_MORE:

  holder.progressBar.setVisibility(View.VISIBLE);

  holder.tvFooter.setText(toLoadText);

  break;

 case LOADING:

  holder.progressBar.setVisibility(View.VISIBLE);

  holder.tvFooter.setText(loadingText);

  break;

 case NO_MORE:

  holder.tvFooter.setText(noMoreText);

  holder.progressBar.setVisibility(View.INVISIBLE);

  break;

}

holder.ivFooter.setImageResource(R.mipmap.ic_launcher);

  
}

  // Remainder omitted 
}

Add it to your Adapter Builder:


  adapter = RecyclerViewAdapter.builder()

  .addHeader(new HeaderBinder("I am the first header! ????"))

  .addFooter(new FooterBinder("------I am the footer!------"))

  .setLoadMoreFooter(new LoadMoreFooterBinderRecycler(), list, new OnReachFooterListener() {

@Override

public void onToLoadMore(int i) {

 // to load more data.

}

  
}
)

  .build();

Note: setLoadMoreFooter should be added behind addHeader and addFooter.

When getting Refresh or Load More data, just call FooterLoadMoreAdapterWrapper#OnGetData, it will handle pagination for you.

 public void onGetRefreshData() {

FooterLoadMoreAdapterWrapper footerLoadMoreAdapterWrapper = (FooterLoadMoreAdapterWrapper) adapter;

footerLoadMoreAdapterWrapper.OnGetData(displayList, REFRESH);

refreshLayout.setRefreshing(false);

  
}

public void onGetLoadMoreData(DataBean displayList) {

FooterLoadMoreAdapterWrapper footerLoadMoreAdapterWrapper = (FooterLoadMoreAdapterWrapper) adapter;

footerLoadMoreAdapterWrapper.OnGetData(displayList, LOAD_MORE);

  
}

How it works?

No mater in ListView or RecyclerView, the adapter is in charge of providing view holder and binding data to each item view. Furthermore, different type items with different layout ids should have different data beans and different ways for databinding. So it would be more fixable and elegant to separate business code of binding data and providing view holder from the adapter. Instead, ViewBinder will handle those task.

DataBean holds the data and an item layout id. With layout id, it provides ViewBinder to bind data to item view in Adapter's method such as onBindViewHolder in RecyclerView and getView in ListView.

License

Copyright 2016 TellH

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

A simple comparison chart for rankings.

A view to show radar chart.

A library for showing different state of views (Content, Empty, Loading, Error).

Dynamic Speedometer, Gauge for Android. amazing, powerful, and multi shape :zap: , you can change (colors, bar width, shape, text, font ...everything !!), this Library has also made to build Games with accelerate and decelerate.

itstimetoact - it's an android library, inspired by 'once', that can help you with planning events in your awesome application.

It's an Android library that allows you to use Layout as RadioButton or CheckBox.

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