vote up 1 vote down star
2

Hi

I'd like to add a menu option to the Android camera app. Is this possible to do using the current SDK?

Thanks.

Ok I know I need to add an intent-filter tag in my activity. But I don't know what I should put in the mime type. I want to be able to process the live camera previews if the user selects the menu option. So what do I put into the type tag of the intent-filter?

Also I suppose I won't be using ALTERNATIVE or SELECTED-ALTERNATIVE for the category as I want to deal with the whole intent?

Thanks again.

flag

2 Answers

vote up 0 vote down check

Most of the built-in Android applications do not add third-party options to their menus.

link|flag
vote up 2 vote down

The closest you can get is to add an option to the 'Share' menu of the built-in camera application. The built-in e-mail app uses the following intent-filter to do this:

<intent-filter>
  <action android:name="android.intent.action.SEND"/>
  <data android:mimeType="image/*"/>
  <category android:name="android.intent.category.DEFAULT"/>
</intent-filter>

(Note the mime-type is specific to image files.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.