GithubHelp home page GithubHelp logo

naseemakhtar994 / extendedrecycleradapter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sergiocasero/extendedrecycleradapter

0.0 1.0 0.0 182 KB

Simple library for DRY recycler adapter

Java 100.00%

extendedrecycleradapter's Introduction

Android Arsenal

ExtendedRecyclerAdapter

Simple library for DRY recycler adapter

Screencast

ExtendedRecyclerAdapter provides you a very simple way for implement RecyclerView Adapter class in Android Projects. Creating adapters is very repetitive. With this library you can implement Adapter in a few minutes!!!

Please, learn about how recycler view adapter works before use this library! :)

Features

  • Items CRUD, simply, directly :)
  • ItemClickListener and LongItemClickListener

Import:

Not avaible NOW... waiting for jcenter team...

Add this to your build.gradle module:

dependencies{
    compile 'com.sergiocasero:extendedrecycleradapter:1.0.0'
}

Show me the code!!

Easy easy!!!, simply implement YourRecyclerAdapter like this... and you are done!! :)

// Car is an item example model
public class MyRecyclerAdapter extends ExtendedRecyclerAdapter<Car> {

    //return viewHolder
    @Override
    protected ExtendedRecyclerViewHolder getViewHolder(View view) {
        return new MyViewHolder(view);
    }

    //Item layout id
    @Override
    protected int getItemLayoutId() {
        return R.layout.item_car;
    }

    //Your viewholder... you can use ButterKnife!
    public class MyViewHolder extends ExtendedRecyclerViewHolder {

        @Bind(R.id.car_id)
        TextView carId;

        @Bind(R.id.car_name)
        TextView carName;

        public MyViewHolder(View itemView) {
            super(itemView);
        }
        
        //Binding model with view attrs :)
        @Override
        public void bind(Car item) {
            carId.setText(String.valueOf(item.getId()));
            carName.setText(String.valueOf(item.getName()));
        }
    }
}

Now, you are ready to use listeners, CRUD methods...

Usage example:

  // Recycler view
  @Bind(R.id.recycler)
  RecyclerView cars;

  
  // Initialize
  myRecyclerAdapter = new MyRecyclerAdapter();
  cars.setAdapter(myRecyclerAdapter);
  cars.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false));

  // Adapter listeners
  myRecyclerAdapter.setOnItemClickListener(...);
  myRecyclerAdapter.setOnLongItemClickListener(...);
  myRecyclerAdapter.setOnNotFoundListener(...);
  
  // CRUD methods
  // Mock car model
  private Car audi;

  // Add
  myRecyclerAdapter.add(audi);
  myRecyclerAdapter.addAll(list);
  
  //Update
  audi.setName("skoda");
  myRecyclerAdapter.update(audi);
  
  //Remove
  myRecyclerAdapter.remove(audi);
  
  //Clear all
  myRecyclerAdapter.clear();

Contributing to the project

Feel free to report any issues or suggest new features.

License

Copyright 2016 Sergio Casero Hernández

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.

extendedrecycleradapter's People

Contributors

sergiocasero avatar foxandxss avatar

Watchers

Naseem Akhtar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.