소스 검색

Update README.md

__MaterialDialog.ListCallbackMultiChoice__ it seems to not exist anymore so the __onSelection__ method with boolean return.
Ramon 10 년 전
부모
커밋
40158bed8c
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      README.md

+ 5 - 3
README.md

@@ -257,15 +257,17 @@ display check boxes next to list items, and the callback can return multiple sel
 new MaterialDialog.Builder(this)
         .title(R.string.title)
         .items(R.array.items)
-        .itemsCallbackMultiChoice(null, new MaterialDialog.ListCallbackMultiChoice() {
+        .itemsCallbackMultiChoice(null, new MaterialDialog.ListCallbackMulti() {
             @Override
-            public boolean onSelection(MaterialDialog dialog, Integer[] which, CharSequence[] text) {
+            public void onSelection(MaterialDialog dialog, Integer[] which, CharSequence[] text) {
                 /**
                  * If you use alwaysCallMultiChoiceCallback(), which is discussed below,
                  * returning false here won't allow the newly selected check box to actually be selected.
                  * See the limited multi choice dialog example in the sample project for details.
+                 * update: Not anymore!
+                 * return true;
                  **/
-                 return true;
+                 
             }
         })
         .positiveText(R.string.choose)