I want to open audio attachments in emails with my app. Currently my intent filter is like so:
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="audio/wav" />
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.wav"/>
<data android:scheme="https" android:host="*" android:pathPattern=".*\\.wav"/>
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.wav"/>
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.wav"/>
</intent-filter>
This works for everything I want it to except for email attachments. Currently if I'm sent a wav file, the only thing I can do is preview it, and that opens with Winamp (so clearly 3rd party apps have a way in). I can't find what I should be adding to do this though, does anyone have any idea?
Edit
Here's what LogCat has to say on the matter. When I click Preview I get
01-10 19:28:52.691: INFO/ActivityManager(109): Starting: Intent { dat=content://gmail-ls/messages/xxxxxxx%40gmail.com/439/attachments/0.1/BEST/false cmp=com.google.android.gm/.ViewAttachmentActivity } from pid 19483
What's bizarre is that Winamp automatically opens, and is not set as default. I'm given no choice...

<data android:mimeType="audio/wav" />in there, is there another way I should be doing it? – Tom Medley Jan 10 '11 at 18:21<data android:scheme="content" android:mimeType="text/xml"/>for xml and it worked. (category=default, action=view) – bigstones Jan 10 '11 at 18:44