We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173a54a commit d258236Copy full SHA for d258236
1 file changed
README.md
@@ -27,6 +27,8 @@ Add it in your root build.gradle at the end of repositories:
27
28
# How to use it
29
30
+From Kotlin
31
+
32
In your activity or fragment
33
34
```
@@ -41,3 +43,16 @@ In your activity or fragment
41
43
negativeButton()
42
44
}
45
46
47
+From Java
48
49
+```
50
+ new RvDialog(this)
51
+ .title("Title")
52
+ .negativeButton()
53
+ .listValues(items, (item, index) -> {
54
+ tv.setText(item);
55
+ return null;
56
+ })
57
+ .show();
58
0 commit comments