tags:

views:

662

answers:

1

How to open .png or .doc file in android in new Activity.

+1  A: 

With PNGs you can use an ImageView.

There isn't really any way to read DOC files unless you want to write a parser yourself. You could try Apache POI, but you'll still have to draw it to the screen yourself.

fiXedd
An image view can display a .png, how do you load a .png file (which is not a resource)?
Akusete