box / box-android-sdk

Apache License 2.0
62 stars 74 forks source link

How to open/view a BoxFile? #421

Closed tef-github closed 4 years ago

tef-github commented 4 years ago

Hello,

How do we open/view a BoxFile without Downloading it?

            val intent = Intent(Intent.ACTION_VIEW)
             intent.setData .......?
             startActivity(intent)
PJSimon commented 4 years ago

Hi @teferio,

I'm not sure I understand what you are asking.

If you just want to view the details of a file without downloading the file contents, you can Get Info about a Box File. If you want to avoid downloading the entire file contents locally, you can download the file using a FileOutputStream (see the second example here).

If that doesn't help, please let me know!

PJSimon commented 4 years ago

Hi @teferio,

Just checking in! Were you able to resolve this? If so, we can close it.

Thanks!

tef-github commented 4 years ago

Hi @PJSimon

Yes, Thanks!