Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 2.09 KB

Readme.md

File metadata and controls

84 lines (61 loc) · 2.09 KB

ElAdapter

Build Status Release

ElAdapter library allows you to decouple RecylerView's adapters code in more handy, simple and beatiful way.

If you have a lot of adapters in your project you should definitely give it a try!

Features

pros:

  • modular code
  • flyent interface for creating and binding views
  • decoupling all inner logic of RecylerView's adapter to interfaces
  • very easy to use
  • generics

cons:

  • early stage of development (not all functions are implemented)

Compatibility

This library is compatible from API 16 (4.1)

Download

Add it in your root build.gradle at the end of repositories:

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

Add the dependency with the latest commit hash as version:

dependencies {
    compile 'com.github.ragnor-rs:el-adapter:f5202db'
}

Example

I bet you won't write any shorter:

ListItemAdapter listAdapter = new ListItemAdapter();

listAdapter
  .addViewCreator(String.class, parent -> new TextView(getActivity()))
  .addViewBinder((view, item) -> view.setText(item));

listAdapter
  .addItem("Hello");
  
recyclerView.setAdapter(listAdapter);

ElAdapter is intended to use with java 8 (or retrolambda)

License

Copyright 2016 Dmitry Mozgin (https://github.com/m039)

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.