android-file-chooser icon indicating copy to clipboard operation
android-file-chooser copied to clipboard

Can we make this dialog to a full screen activity/fragment look.?

Open ahsan7766 opened this issue 5 years ago • 7 comments

ahsan7766 avatar Apr 03 '19 09:04 ahsan7766

yes, through the alertdialog theme. at least it should be... edit: strange, doesn't seem to work...

Guiorgy avatar Apr 03 '19 11:04 Guiorgy

Can you explain a little. I did not get any alert dialog theme and get results from that.Thanks for quick responce

ahsan7766 avatar Apr 03 '19 13:04 ahsan7766

In 1.1.17 we added theme support. Check the demo app to see an example of a dark theme (in res/values/styles). Anyways, google says

        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">fill_parent</item>

should make it full screen... you can try that, but didn't work for me. I will check it later I supose

Guiorgy avatar Apr 03 '19 13:04 Guiorgy

Same here did not work for me. With lots of stackoverflow answers. Anyway thanks for support .

ahsan7766 avatar Apr 04 '19 05:04 ahsan7766

        <item name="android:layout_height">match_parent</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:windowIsFloating">false</item>
        <item name="android:windowFullscreen">true</item>

in the next release you should be able to do this, though for some reason it will still not work with some parent themes, like @android:style/Theme.Material.Dialog.Alert when I was testing

Guiorgy avatar Apr 15 '19 08:04 Guiorgy

example: Screenshot_1555317994 is this the desired outcome?

Guiorgy avatar Apr 15 '19 08:04 Guiorgy

1.1.19 out, please confirm that the problem has been solved.

Guiorgy avatar Apr 27 '19 11:04 Guiorgy