I was wondering how to tell android that my app is a camera app, so other apps know that they can start my app to get a picture.
E.g. with pixlr-o-matic you can either select an image from the gallery or you can request it from a camera app of your choice.
edit:
how do i return the picture to the calling app?
This is done with intent-filters. Add the following tag to your manifest :
Now your application will appear in the list when the user wants to take a picture.
EDIT :
Here is the proper way to return a bitmap :
You can also check the android built-in Camera app source code.