BRVAH:Powerful and flexible RecyclerAdapter
-
Updated
Oct 12, 2020 - Java
{{ message }}
BRVAH:Powerful and flexible RecyclerAdapter
The flexible, easy to use, all in one drawer library for your Android project. Now brand new with material 2 design.
An Android Animation library which easily add itemanimator to RecyclerView items.
Android library to observe scroll events on scrollable views.
An Android transformation library providing a variety of image transformations for Glide.
Some Android learning materials, hoping to help you learn Android development.
A curated list of awesome Android packages and resources.
Bootstrap style widgets for Android, with Glyph Icons
Android library (AAR). Highly configurable, easily extendable deep zoom view for displaying huge images without loss of detail. Perfect for photo galleries, maps, building plans etc.
An android image compression library.
A scrollable list of items that centers the current element and provides easy-to-use APIs for cool item animations.
RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.
An Android Alerting Library
Library for Android Camera 1 and 2 APIs. Massively increase stability and reliability of photo and video capture on all Android devices.
Android library that simplifies the process of requesting permissions at runtime.
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Blurry is an easy blur library for Android
Barcode scanner library for Android, based on the ZXing decoder
Android Library to rapidly develop attractive and insightful charts in android applications.
Pick a date or time on Android in style
Add a description, image, and links to the android-library topic page so that developers can more easily learn about it.
To associate your repository with the android-library topic, visit your repo's landing page and select "manage topics."
目前更新adapter只能使用一种方式
var items = emptyList<String>() var mMultiTypeAdapter = MultiTypeAdapter() mMultiTypeAdapter.items = items mMultiTypeAdapter.notifyDataSetChanged()每次都需要在外面,新建一个items,然后设置给adapter替换掉,假如我如果想
`
var items = emptyList()
var mMultiTypeAdapter = MultiTypeAdapter()
mMultiTypeAdapter.items = items
mMultiTypeAdapter.notifyDataSetChanged()
//第二次请求到数据
var it