All Projects → holidaycheck → Recyclerviewinjectoradapter

holidaycheck / Recyclerviewinjectoradapter

Licence: mit
RecyclerView.Adapter on steroids

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Recyclerviewinjectoradapter

Materialfavoritebutton
Animated favorite/star/like button
Stars: ✭ 586 (+3562.5%)
Mutual labels:  android-ui
Codeview Android
Display code with syntax highlighting ✨ in native way.
Stars: ✭ 748 (+4575%)
Mutual labels:  android-ui
Androidveil
🎭 An easy, flexible way to implement veil skeletons and shimmering effect for Android.
Stars: ✭ 792 (+4850%)
Mutual labels:  android-ui
Bubble Scroll
An animating scroll bar
Stars: ✭ 598 (+3637.5%)
Mutual labels:  android-ui
Discretescrollview
A scrollable list of items that centers the current element and provides easy-to-use APIs for cool item animations.
Stars: ✭ 5,533 (+34481.25%)
Mutual labels:  android-ui
Motiontoast
🌈 A Beautiful Motion Toast Library for Kotlin Android
Stars: ✭ 767 (+4693.75%)
Mutual labels:  android-ui
Audio Visualizer Android
🎵 [Android Library] A light-weight and easy-to-use Audio Visualizer for Android.
Stars: ✭ 581 (+3531.25%)
Mutual labels:  android-ui
Morphing Material Dialogs
Material dialog ❤️ morphing animation. An android kotlin UI library for building beautiful animations for converting a floating action button into a material dialog.
Stars: ✭ 806 (+4937.5%)
Mutual labels:  android-ui
Music Player Go
🎶🎼 Very slim music player 👨‍🎤 100% made in Italy 🍕🌳🌞🍝🌄
Stars: ✭ 654 (+3987.5%)
Mutual labels:  android-ui
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+4793.75%)
Mutual labels:  android-ui
Materialdialog Android
📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.
Stars: ✭ 602 (+3662.5%)
Mutual labels:  android-ui
Androidscreenadaptation
A light and easy-to-use Android development screen adaptation tool library(一个轻量好用的安卓开发屏幕适配工具库)
Stars: ✭ 619 (+3768.75%)
Mutual labels:  android-ui
Insetter
Insetter is a library to help apps handle WindowInsets more easily
Stars: ✭ 766 (+4687.5%)
Mutual labels:  android-ui
Guidetocustomviews
The ultimate guide to Android custom views
Stars: ✭ 595 (+3618.75%)
Mutual labels:  android-ui
Animatedbottombar
A customizable and easy to use BottomBar navigation view with sleek animations, with support for ViewPager, ViewPager2, NavController, and badges.
Stars: ✭ 797 (+4881.25%)
Mutual labels:  android-ui
Android Material Design For Pre Lollipop
Various UI implementations, animations & effects based on Material Design compatible with pre Lollipop devices as well. (Work in progess)
Stars: ✭ 585 (+3556.25%)
Mutual labels:  android-ui
Numberpicker
🎰 The android library that provides a simple and customizable NumberPicker.
Stars: ✭ 766 (+4687.5%)
Mutual labels:  android-ui
Swipeablecard
A simple implementation of swipe card like StreetView
Stars: ✭ 812 (+4975%)
Mutual labels:  android-ui
Polygondrawingutil
A compact Android utility for constructing and drawing rounded regular polygons.
Stars: ✭ 805 (+4931.25%)
Mutual labels:  android-ui
Labelsview
Android的标签列表控件。可以设置标签的选中效果。 可以设置标签的选中类型:不可选中、单选、限数量多选和不限数量多选等, 并支持设置必选项、单行显示、最大显示行数等功能。
Stars: ✭ 777 (+4756.25%)
Mutual labels:  android-ui

Build Status Download

RecyclerViewInjectorAdapter

RecyclerViewInjectorAdapter wraps your regular RecyclerView.Adapter and adds possibility to inject custom views on desired position without hassle.

Overview

  • Tested in production - over 1.000.000 installs in the HolidayCheck App
  • Works with stable IDs & non-stable ID adapters
  • In most cases, requires no changes to your adapter (see Caution)
  • Supports multiple view injections
  • Supports all items animations
  • Supports Android 15+

Demo

Demo

Add it to your Project

Include the library in your build.gradle

dependencies {
    compile 'com.holidaycheck:recyclerviewinjectoradapter:1.0.3'
}

or to your pom.xml if you are using Maven

<dependency>
    <groupId>com.holidaycheck</groupId>
    <artifactId>recyclerviewinjectoradapter</artifactId>
    <version>1.0.3</version>
    <type>aar</type>
</dependency>

Configuration

To enable injecting views you need to wrap your regular adapter with RecyclerViewInjectorAdapter and set it to RecyclerView.

Assuming that your code looks similar to this

MyAdapter adapter = new MyAdapter();

RecyclerView recyclerView = findViewById(R.id.recycler_view);
recyclerView.setAdapter(adapter)

You should change it to

MyAdapter adapter = new MyAdapter();
RecyclerViewInjectorAdapter injectorAdapter = new RecyclerViewInjectorAdapter(adapter)

RecyclerView recyclerView = findViewById(R.id.recycler_view);
recyclerView.setAdapter(injectorAdapter)

Usage

After the configuration, you can inject views

injectorAdapter.inject(new InjectedViewCreator() {
    @Override
    public View createView() {
        Button button = new Button(getApplicationContext());
        button.setText("This is injected Button on position 5");
        return button;
    }
}, 5);

Remove injected view by passing position

injectorAdapter.removeInjectedView(5);

There are some methods to control the visibility of injected views

Method Description
setShowInjectedViews(boolean showInjectedViews) Allows to hide or show all injected views
setDisplayInjectedViewsOnEmptyChildAdapter(boolean display) Decides if injected views should be displayed on empty child adapter
setDisplayInjectedViewsOnLowerPosition(boolean display) Decides if injected views should be displayed on lower position than desired. For example, a view is injected on position 10, but child adapter has only 5 items.

For more details take a look at the javadoc.

Caution

  • Every update that refers to the regular item should be dispatched to your child adapter.
  • getAdapterPosition() method of your RecyclerView.ViewHolder now returns position that include also injected views below that position. To get the position without injected views included, please use int realChildAdapterPosition = injectorAdapter.toChildAdapterPosition(getAdapterPosition()) or get rid of getAdapterPosition() by passing reference to your data to ViewHolder and then getting position from your underlying data structure.

Do you want to Contribute?

Feel free to add any cool and useful feature to the library, we're happy to accept Pull Requests.

License

The MIT License (MIT)

Copyright (c) 2016 HolidayCheck AG

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].