ExpandableDelegates
more convenient way to add multiple delegates to your expandable recyclerView!
new ExpandableBuilder(this)
.withAdapter(createAdapter())
.withRecyclerView(recyclerView)
.build();
#Install
allprojects {
repositories {
...
maven {
url "https://jitpack.io"
}
}
}
And also
dependencies {
compile ('com.github.Marchuck:ExpandableDelegates:v1.0.0'){
transitive = true
}
}
#Usage
Look at master branch. Code at MainActivity.class will help you.
If you have applied this library in your project, contact me, I will add it to the following list:
#Projects using this library:
#Authors
This wrapper/library was created by Pawe? Próchniak and ?ukasz Marczak based on library created by Haruki Hasegawa, who creted this library. Thank you!
#License This library is licensed under the Apache Software License, Version 2.0.
Copyright (C) 2016 ?ukasz Marczak, Pawe? Próchniak
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.