TutorialsAndroid / FilePicker

Android Library to select files/directories from Device Storage.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How To set width of dialogue ???

rogerda8 opened this issue · comments

Its too narrow that's why name of some files is not visible, is there any property to change width of dialogue box?

What was the solution for this? I'm having the same issue. It's showing very narrow on screen.

Solution for future reference is:

filePickerDialog.show();
filePickerDialog.getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);