You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a library that abstracts, and completely hide the Adapter and ViewHolder class creation part.
6
-
It is general purpose object that can be costumized to each case (item layout) by the time of creation. Similar to what is done on Listview with default adapters.
6
+
It is general purpose object that can be customized to each case (item layout) by the time of creation. Similar to what is done on Listview with default adapters.
7
7
Compatible with androidx.
8
8
9
-
## Pre-requesites
10
-
This library can be implemented on any android project with minimun API 14. You must have a list and an item_layout for each item of the list
9
+
## Pre-requisites
10
+
This library can be implemented on any android project with minimum API 14. You must have a list and an item_layout for each item of the list
11
11
12
12
## Adding to your project
13
13
Lets start by adding a corresponding repository in your _root_`build.gradle` file. (prefer below all other)
@@ -19,18 +19,18 @@ Lets start by adding a corresponding repository in your _root_ `build.gradle` fi
19
19
}
20
20
}
21
21
```
22
-
The next task is to add the dependecy to your _app_`build.gradle` file.
22
+
The next task is to add the dependency to your _app_`build.gradle` file.
Now you ready to go. Except that you should _**sync your project**_ first.
30
30
31
-
### Do not use with app compart or support design
32
-
As mention on IO18, android support libraries will not be updated anymore, thats the main reason ive moved to androidx and new material design libraries. That's why if you have any appcompat or design support library as dependency the build will fail. Because the androidx on these lib will conflict with android support on your app.
33
-
I am wondering if it is necessary to do a separate lib for suppor appcompat. Email me if you thinking on that.
31
+
### Do not use with app compat or support design
32
+
As mention on IO18, android support libraries will not be updated anymore, that's the main reason ive moved to androidx and new material design libraries. That's why if you have any appcompat or design support library as dependency the build will fail. Because the androidx on these lib will conflict with android support on your app.
33
+
I am wondering if it is necessary to do a separate lib for support appcompat. Email me if you thinking on that.
34
34
35
35
## How to use
36
36
Call the default constructor passing as Datatype the class of your list objects.
@@ -105,7 +105,7 @@ NONE OF THIS ARE OPTIONAL, so not setting them may lead to runtime app crash.
0 commit comments