I made an image viewer that has 3 activities:
1) Main: where I search for files using regexp against filenames. The result is an ArrayList called 'files' that is sent using Extras to...
2) Thumbs: Through Extras it gets the filenames, and shows a grid with thumbnails (already stored locally). When you click a thumbnail, the position and 'files' is sent to...
3) Photo: It shows files(position) fullscreen.
Now, I want to make 'Photo' my default image viewer. I know how to call the class from another app. But is is possible to make 'Photo' the default viewer just by clicking an image, without calling the whole app?