All Projects → netguru → sections-decorator-android

netguru / sections-decorator-android

Licence: other
No description, website, or topics provided.

Programming Languages

kotlin
9241 projects
IDL
102 projects

Sections decorator

About

Sections decorator is RecyclerView decorator that decorates multi section recycler with vertical / horizontal line and section title. Current section title is always visible. It might be useful in todo list or calendar like applications. example1 example2

Usage

  1. Add jitpack.io to your build.gradle
repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}
  1. Add library dependency
implementation 'com.github.netguru:sections-decorator-android:0.1.1'
  1. implement SectionsAdapterInterface in your RecyclerView adapter
  1. add decorator to your RecyclerView

kotlin:

recyclerView.addItemDecoration(SectionDecorator(context).apply {
            setLineColor(R.color.green)
            setLineWidth(15f)
        })

java:

SectionDecorator decorator = new SectionDecorator(getContext());
decorator.setLineColor(R.color.green)
decorator.setLineWidth(15f)
recyclerView.addItemDecoration(decorator);
  1. Customize

Customization

you can customize line color and width through setLineColor(color: Int) and setLineWidth(width: Float). To customize text appearience you can create layout with only TextView in it and pass it to decorator using setHeaderView(layoutRes: Int)

License

Copyright 2018 Netguru

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.
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].