Browse Source

README update.

Aidan Follestad 10 years ago
parent
commit
4d37ecda65
1 changed files with 3 additions and 1 deletions
  1. 3 1
      README.md

+ 3 - 1
README.md

@@ -289,7 +289,7 @@ new MaterialDialog.Builder(this)
         .show();
 ```
 
-If you need access to the `ListView`, you can use the `MaterialDialog` instance.
+If you need access to the `ListView`, you can use the `MaterialDialog` instance:
 
 ```java
 MaterialDialog dialog = new MaterialDialog.Builder(this)
@@ -302,6 +302,8 @@ ListView list = dialog.getListView();
 dialog.show();
 ```
 
+Note that you don't need to be using a custom adapter in order to access the `ListView`, it's there for single/multi choice dialogs, regular list dialogs, etc.
+
 ---
 
 ### Custom Views