Reputation: 2145
I have a input stream of different types of file such as .png,.docx,.ppt,.pdf,.ods,.txt files which i download through my webservice. I did not have a url of thes files .These files are store on cloud. How i display these files with in my android app with in the activity window....
Upvotes: 0
Views: 171
Reputation: 75635
You have to download them, store locally (on SD card) and fire ACTION_VIEW
intent to open file with assigned application
Upvotes: 1