瀏覽代碼

Merge pull request #1169 from pylerSM/patch-1

Update readme with new APIs
Aidan Follestad 8 年之前
父節點
當前提交
502d5280eb
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      README.md

+ 2 - 0
README.md

@@ -1221,6 +1221,7 @@ new FileChooserDialog.Builder(this)
     .initialPath("/sdcard/Download")  // changes initial path, defaults to external storage directory
     .mimeType("image/*") // Optional MIME type filter
     .tag("optional-identifier")
+    .goUpLabel("Up") // custom go up label, default label is "..."
     .show();
 ```
 
@@ -1251,6 +1252,7 @@ new FolderChooserDialog.Builder(this)
     .chooseButton(R.string.md_choose_label)  // changes label of the choose button
     .initialPath("/sdcard/Download")  // changes initial path, defaults to external storage directory
     .tag("optional-identifier")
+    .goUpLabel("Up") // custom go up label, default label is "..."
     .show();
 ```