hedzr / android-file-chooser

a lightweight file/folder chooser or picker
Apache License 2.0
284 stars 62 forks source link

Can the title of the dialog be removed? #23

Closed Vierco closed 6 years ago

Vierco commented 6 years ago

Otherwise, you can change the color of the title and the "cancel" button? Thanks for your work.

hedzr commented 6 years ago

two ways:

  1. give an empty title string resource like: <string name="title_nothing"></string>, and set as main title:
    .withResources(R.string.title_nothing, R.string.title_ok, R.string.dialog_cancel)
  2. try the temporary disableTitle(true) on the newest master branch.

good luck.