From c529ca2903f4f59364762a5b015b0502e3506ef3 Mon Sep 17 00:00:00 2001 From: Orhan Obut Date: Sun, 21 Jun 2015 20:58:20 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f44c5b..2e6bacc 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ DialogPlus dialog = new DialogPlus.Builder(this) public void onItemClick(DialogPlus dialog, Object item, View view, int position) { } }) - .setExpanded(true) // This will enable the scrolling animation + .setExpanded(true) // This will enable the expand feature, (similar to android L share dialog) .create(); dialog.show(); ``` ### More options -Enable scrolling animation same as Android L +Enable expand animation same as Android L share dialog ```java .setExpanded(true) // default is false, only works for grid and list ```