Skip to content

Commit 648269f

Browse files
authored
Merge pull request #7 from gzeinnumer/dev-1
Dev 1
2 parents 690e409 + 80dc0ab commit 648269f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,15 @@ String[] arrayString = {"M", "Fadli", "Zein"};
8484
new SearchViewDialog<String>(getSupportFragmentManager())
8585
.setItems(arrayString);
8686
```
87+
#
8788
**Type 2**
8889
```java
8990
ArrayList<String> listString = new ArrayList<>();
9091
listString.add("Lorem ipsum dolor");
9192
new SearchViewDialog<String>(getSupportFragmentManager())
9293
.setItems(listString);
9394
```
95+
#
9496
**Type 3** for this type you should override function `toString()` in your `model pojo`
9597
```java
9698

@@ -250,7 +252,7 @@ dialog.show();
250252
| <img src="https://github.com/gzeinnumer/MyLibDialogSearchView/blob/master/preview/MyLibDialogSearchView_5.jpg" /> | <img src="https://github.com/gzeinnumer/MyLibDialogSearchView/blob/master/preview/MyLibDialogSearchView_7.jpg"/> |
251253
|:------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------|
252254
| `Multi Select Item` Preview, you can select more than **1** Item | Click `OK` and call function `onOkPressedCallBackMulti` |
253-
255+
#
254256
#### SearchViewDialog -> Customize
255257

256258
<p align="center">

0 commit comments

Comments
 (0)