How to use or access a file found on Google Drive?

0

I want to know if it is possible to use a file that is in the cloud as if it were in the memory of the link style device, that this file that is in the cloud can be accessed through the link that will be created in the memory, but only opening or exploring the content of it without having to trigger any download process that delays the execution of the file. If you know if it is possible to achieve what I have commented, please let me know. Thanks

    
asked by Abraham.P 05.01.2017 в 20:07
source

1 answer

-1
 Uri uri = Uri.parse("http://www.tuenlance.com");
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);

This will open your browser with the default link, I hope it helps you.

Note: You can use it on a button or other control

    
answered by 05.01.2017 в 20:11