Custom RecyclerView with additional functionality. Allow you add divider, itemSpace, emptyView, sticky header and some other features
Custom RecyclerView with additional functionality. Allow you add divider, itemSpace, emptyView, sticky header and some other features
To get a Git project into your build:
Step 1. Add the JitPack repository to your build file
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }Step 2. Add the dependency
dependencies { implementation 'com.github.Omega-R:OmegaRecyclerView:[email protected]' // AndroidX // or // implementation 'com.github.Omega-R:OmegaRecyclerView:[email protected]' // Android Support }
Example of usage in xml layout
To add sticky header into project you need implements StickyHeaderAdapter in adapters class
public class TestAdapter extends RecyclerView.Adapter implements StickyHeaderAdapter
Proper appearence of sticky header when using space item
stickyHeaderDecoration.setItemSpace(omegaRecyclerView.getItemSpace());
You can use findViewById without itemView
nameTextView = findViewById(R.id.text_contact_name); messageButton = findViewById(R.id.button_message);
For array use BaseArrayAdapter
getItemCount() getItem(position) set(array) add(array)
To add swipe menu into project you need to use SwipeViewHolder or create your own ViewHolder. ``` public class ViewHolder extends SwipeViewHolder {
public ViewHolder(ViewGroup parent) { super(parent, R.layout.item_swipe_content, R.layout.item_left_swipe_menu, R.layout.item_right_swipe_menu); }
Also you can use constructor only with left menu, or only with right menu.
public ViewHolder(ViewGroup parent) { super(parent, R.layout.item_swipe_content, R.layout.item_left_swipe_menu, SwipeViewHolder.NO_ID); }
Also you can use one layout for left menu and right menu.
public ViewHolder(ViewGroup parent) { super(parent, R.layout.item_swipe_content, R.layout.swipe_menu); }
You can use following methods for controlling swipe menu state:
public void setSwipeFractionListener(@Nullable SwipeFractionListener listener); public void setSwipeListener(@Nullable SwipeSwitchListener listener); public void smoothCloseMenu(int duration); public void smoothCloseMenu(); public void smoothOpenBeginMenu(); public void smoothOpenEndMenu(); public void setSwipeEnable(boolean enable); public boolean isSwipeEnable(); ```
To add pagination into project you just need to setPaginationCallback to OmegaRecyclerView. ``` mRecyclerView.setPaginationCallback(new OnPageRequestListener() { @Override public void onPageRequest(int page) { // You can load data inside this callback }
@Override public int getPagePreventionForEnd() { return PREVENTION_VALUE; // PREVENTION_VALUE - for how many positions until the end you want to be informed } });
How to control pagination:
mRecyclerView.showProgressPagination(); // show progress mRecyclerView.hidePagination(); // hide pagination mRecyclerView.showErrorPagination(); // show error ```
You have two ways to add your custom pagination layout and error layout. First way:
You can implement PaginationView in your Adapter class. Second: ``` public class RecyclerAdapter extends OmegaRecyclerView.Adapter implements PaginationViewCreator { .... @Nullable @Override public View createPaginationView(ViewGroup parent, LayoutInflater inflater) { return inflater.inflate(R.layout.item_progress, parent, false); }
@Nullable @Override public View createPaginationErrorView(ViewGroup parent, LayoutInflater inflater) { View view = inflater.inflate(R.layout.item_error_loading, parent, false); view.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // on error clicked.... } }); return view; }
## Sections (Header, Footer)
![]()
For usage just add you Views inside OmegaRecyclerView and add "app:layout_section" parameter.
<?xml version="1.0" encoding="utf-8"?>
</recyclerview.viewholder>android:text="Footer" app:layout_section="footer"/>
```
For controll
OmegaRecyclerView.setHeadersVisibility(true); OmegaRecyclerView.setFootersVisibility(false);ViewPager
![]()
For usage just add OmegaPagerRecyclerView ``` <?xml version="1.0" encoding="utf-8"?> <com.omegar.libs.omegarecyclerview.viewpager.OmegaPagerRecyclerView android:id="@+id/recyclerview" android:layoutwidth="matchparent" android:layoutheight="match_parent" android:orientation="vertical"
// Supported features app:infinite="true" // Infinite scroll app:pageSize="0.8" // set page size 80% of screen app:transitionTime="2100"/>You could use your owner transformation.recyclerView.setItemTransformer(new ScaleTransformer.Builder() .setMaxScale(1.1f) .setMinScale(0.8f) .build());### [You could see our otransformations on wiki page.](https://github.com/Omega-R/OmegaRecyclerView/wiki/ViewPager)BaseListAdapter
Most common usage of RecyclerView is showing list of items. To simplify adapter creation just use BaseListAdapter:
// Adapter for List public class ListAdapter extends BaseListAdapter {
@Override protected ViewHolder provideViewHolder(ViewGroup parent) { return new SampleViewHolder(parent); }class SampleViewHolder extends ViewHolder {
private TextView textView; // there should be layout setting and binding SampleViewHolder(ViewGroup parent) { super(parent, R.layout.item_string); textView = findViewById(R.id.textview); } @Override protected void onBind(String item) { textView.setText(item); }
}
} ```
Methods to change items:
setItems(List items)addItems(List\ items)Adapter will be automatically safely notified.BaseListAdapter also have methods to click events handling:
setClickListener(@Nullable OnItemClickListener clickListener)setLongClickListener(@Nullable OnItemLongClickListener longClickListener)You can subscribe to this event on the fly - all view holders will be notified.Expandable
![]()
![]()
Adding OmegaExpandableRecyclerView to layout:
Create adapter like following: ``` public class ExpandableAdapter extends OmegaExpandableRecyclerView.Adapter {
@Override protected ExGroupViewHolder provideGroupViewHolder(@NonNull ViewGroup viewGroup) { return new ExGroupViewHolder(viewGroup); }@Override protected ExChildViewHolder provideChildViewHolder(@NonNull ViewGroup viewGroup) { return new ExChildViewHolder(viewGroup); }
class ExGroupViewHolder extends GroupViewHolder {
private TextView textView; ExGroupViewHolder(ViewGroup parent) { super(parent, R.layout.item_exp_group); textView = findViewById(R.id.textview_group_name); } @Override protected void onExpand(GroupViewHolder viewHolder, int groupIndex) { // nothing } @Override protected void onCollapse(GroupViewHolder viewHolder, int groupIndex) { // nothing } @Override protected void onBind(QuoteGlobalInfo item) { textView.setText(item.getTitle()); }
}
class ExChildViewHolder extends ChildViewHolder {
private TextView textView; ExChildViewHolder(ViewGroup parent) { super(parent, R.layout.item_exp_child); textView = findViewById(R.id.textview_child_content); } @Override protected void onBind(Quote item) { textView.setText(item.getQuote()); }
}
} ```
Use one of the following methods to set items for adapter or use adapter constructors:
public final void setItems(@NonNull List> expandableViewData) public final void setItems(ExpandableViewData... expandableViewData) public final void setItemsAsGroupProviders(GroupProvider... groupProviders) public final void setItemsAsGroupProviders(@NonNull List> groupProviders)Your view data (group and childs) should be wrapped with
ExpandableViewDatausing one of the following ways: ``` ExpandableViewData(G group, List childs, @Nullable Integer stickyId) // constructorstatic ExpandableViewData of(G group, @Nullable Integer stickyId, List childs) static ExpandableViewData of(G group, @Nullable Integer stickyId, CH... childs) ```
Or it should implement interface ``` public interface GroupProvider { G provideGroup();
List provideChilds();@Nullable Integer provideStickyId();
} ```
It is available to update only child item using
// Adapter public void notifyChildChanged(CH child)You can set expandMode and childAnimation both with xml attr and programmatically
Available expandModes are single and multiple
Available childAnimations are Dropdown and Fade
You can simply create your own animations by extending
ExpandableItemAnimatorclass and then just set it to RecyclerViewrecyclerView.setItemAnimator
It is possible to emulate background expanding using "app:backgrounds" attribute.
Create LevelListDrawable in res/drawable folder
expandable_backgrounds.xml
And then just add
app:backgrounds="@drawable/expandable_backgrounds"attribute to your OmegaExpandableRecyclerView
![]()
![]()
OmegaExpandableRecyclerView have 2 ways of using Sticky Header feature: Default (that is described above in StickyHeader section) and StickyGroups. Last one is the way to make GroupViewHolders work as StickyHeaders.
To do that just add
app:stickyGroups="true"attribute to your OmegaExpandableRecyclerView and be sure that you set items providing uniquestickyIdfor each group.And, of course, you CAN use both sticky behaviors at the same time
License
The MIT LicenseCopyright 2017 Omega-R
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.