Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Shimmerrecyclerview | 3,458 | 3 years ago | 13 | other | Kotlin | |||||
All Base Adapter | 528 | 6 years ago | 5 | apache-2.0 | Java | |||||
Adapter terminator, including DataBinding, any ViewGroup, list(Rv, Lv ). Write Adapter, it is enough .Adapter终结者,包含DataBinding,任意ViewGroup,Rv、Lv列表。写Adapter,有它就够了 | ||||||||||
Adapterlayout | 57 | 3 years ago | 2 | apache-2.0 | Kotlin | |||||
ViewGroup backed by RecyclerView.Adapter = magic | ||||||||||
Universaladapter | 53 | 8 years ago | apache-2.0 | Java | ||||||
A single adapter implementation for any scrolling view or ViewGroup. | ||||||||||
Adapter Databinding | 11 | 3 years ago | apache-2.0 | Kotlin | ||||||
adapter-databinding | ||||||||||
Xebicon 2013__cc In Aa | 9 | 10 years ago | Java | |||||||
A demonstration of the "Custom ViewGroup" advice given during the Clean Code in Android Apps talk of XebiCon 2013. | ||||||||||
Listview | 3 | 7 years ago | Java | |||||||
a samples of ListView | ||||||||||
Android Stacklayout | 2 | 9 years ago | mit | Java | ||||||
Custom ViewGroup of which the top element can be swept away. | ||||||||||
Gsectioned Recyclerview | 2 | 4 years ago | mit | Kotlin | ||||||
Biblioteca criada de modo a facilitar a criação de um RecyclerView com seções, algo muito comum em diversas aplicações. | ||||||||||
Simplemvp_android | 2 | 5 years ago | Java | |||||||
Custom ViewGroup of which the top element can be swept away in all directions.
Name | Format | Description |
---|---|---|
infinite | boolean | If true swept views will be added back to the bottom of the stack, otherwise they are removed entirely. |
To use these attributes the following attribute must also be set on the root element of the XML layout:
xmlns:custom="http://schemas.android.com/apk/res-auto"
Returns | Method | Description |
---|---|---|
void | setAdapter(Adapter adapter) | Sets the Adapter used to provide the data which backs this Stack. |
void | setListener(StaskListener listener) | Register callbacks to be invoked when swipes and hovers occur. |
<red.rabbit.stack.StackLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
custom:infinite="true" >
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cc0000" />
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00cc00" />
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0000cc" />
</red.rabbit.stack.StackLayout>