Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to be able to download a file with a particular extension from the 'net, and have it passed to my application to deal with it, but I haven't been able to figure out the intent filter. The filetype is not included in the mimetypes, and I tried using

<data android:path="*.ext" />

but I couldn't get that to work.

share|improve this question

6 Answers

Here is how I defined my activity in my AndroidManifest.xml to get this to work.

<activity name="com.keepassdroid.PasswordActivity">
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="file" />
        <data android:mimeType="*/*" />
        <data android:pathPattern=".*\\.kdb" />
        <data android:host="*" />
    </intent-filter>
</activity>

The scheme of "file" indicates that this should happen when a local file is opened (rather than protocol like http).

mimeType can be set to "*/*" to match any mime type.

pathPattern is where you specify what extension you want to match (in this example .kdb). The "." at the beginning matches any squence of characters. These strings require double escaping, so "\\." matches a literal period. Then, you end with your file extension. One caveat with pathPattern is that . is not a greedy match like you would expect if this was a regular expression. This pattern will fail to match paths that contain a . before the .kdb. For a more detailed discussion of this issue and a workaround see: pathPattern to match file extension does not work if a period exists elsewhere in the file name?

Finally, according to the Android documentation, both host and scheme attributes are required for the pathPattern attribute to work, so just set that to the wildcard to match anything.

Now, if you select a .kdb flie in an app like Linda File Manager, my app shows up as an option. I should note that this alone does not allow you to download this filetype in a browser, since this only registers with the file scheme. Having an app like Linda File Manager on your phone resisters itself generically allowing you to download any file type.

share|improve this answer
Wow, that's awesome, thanks, I'll try it out. – Curyous Jan 15 '10 at 21:39
2  
This doesn't work here. First with mimeType="", the package doesn't install on Android 2.1, I get a MalformedMimeTypeException. Using "*/" fixes this, but then, this filter has no effect. I am currently testing with the Skyfire browser, which doesn't preserve the mime type of downloads, as the standard Android browser do. And when clicking on a file in the Skyfire downloads list, a simplistic VIEW intent is broadcasted with file data. And this intent filter doesn't match. – olivierg Feb 8 '11 at 12:43
@Brian Pellin: I was actually searching for a way to bind a mime-type to the .kdbx extension to allow ES file explorer to open kdbx files when I was pointed to this post. Apparently if the intent has an empty MIME type, this intent filter will not work!! Also, it's possible to have an intent with an EMPTY string as the action and just a URI. Google Docs responded to that intent, so it must be valid. – billc.cn Sep 6 '11 at 1:50
as another poster mentions below (+1 him, he deserves it), changing to mimeType="/" works. – Nick Dec 16 '11 at 16:54
Just to be clear, mimeType should be "*/*" I think some people forgot to escape their *s – Brian Pellin Dec 22 '11 at 6:13
show 5 more comments

Rather than android:path, try android:mimeType, with a value of the MIME type of this particular piece of content. Also, android:path does not accept wildcards -- use android:pathPattern for that.

share|improve this answer
"The filetype is not included in the mimetypes"? There should still be a mimetype for the type of content you're downloading, even if it doesn't use the same word. – Konklone Nov 15 '09 at 17:24
There is a mimetype for the type of content, but the file is produced by a third party application that puts a different extension on it, so I don't think it will be recognised as that mimetype. – Curyous Nov 16 '09 at 23:58
Thanks, I'll give the pathPattern a go and see what happens. – Curyous Nov 16 '09 at 23:58

Brian's answer above got me 90% of the way there. To finish it off, for mime type I used

android:mimeType="*/*"

I suspect that previous posters have attempted to post the same detail, but the withough qoting the star slash star as code, stackoverflow diplays it as just a slash.

share|improve this answer
thanks, you are right – Brian Pellin Dec 22 '11 at 6:15
can you please have a look at this question? It is some what related to the question in this thread stackoverflow.com/questions/16441330/… and stackoverflow.com/questions/16413498/… – neerajDorle May 10 at 4:49

You probably can't do it system wide, because Android doesn't support that. You can do this for specific apps like Google mail client or Google browser.

Look for more info hire: http://www.mail-archive.com/android-developers@googlegroups.com/msg47862.html

I saw code for adding support for APKs in mail client (for installing them instead of saving), but unfortunately I cant found it now.

share|improve this answer
can you please have a look at this question? It is some what related to the question in this thread stackoverflow.com/questions/16441330/… and stackoverflow.com/questions/16413498/… – neerajDorle May 10 at 4:50

Brian's answer is very close, but here's a clean and error-free way to have your app invoked when trying to open a file with your own custom extension (no need for scheme or host):

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:mimeType="*/*" />
    <data android:pathPattern="*.*\\.kdb" />
</intent-filter>
share|improve this answer
1  
The Android documentation states that the pathPattern attribute is only meaningful if a scheme and host are specified, and I have verified this: developer.android.com/guide/topics/manifest/data-element.html – Brian Pellin Sep 28 '11 at 18:35
2  
-1; this will match any file; Brian's comment is correct and with the minor modification of mimeType="/" his original example is perfect. – Nick Dec 16 '11 at 16:52
This post if from long time ago, but no "/" does not install. You need "*/*", which will match any file type (not sure, if you meant to say this). So your program might be asked to open videos or mp3s. I have not found a solution to this yet. – Rene Jan 22 '12 at 10:01
can you please have a look at this question? It is some what related to the question in this thread stackoverflow.com/questions/16441330/… and stackoverflow.com/questions/16413498/… – neerajDorle May 10 at 4:50

None of the above work properly, for VIEW or SEND actions, if the suffix is not registered with a MIME type in Android's system=wide MIME database. The only settings I've found that fire for the specified suffix include android:mimeType="/", but then the action fires for ALL files. Clearly NOT what you want!

I can't find any proper solution without adding the mime and suffix to the Android mime database, so far, I haven't found a way to do that. If anyone knows, a pointer would be terrific.

share|improve this answer
can you please have a look at this question? It is some what related to the question in this thread stackoverflow.com/questions/16441330/… and stackoverflow.com/questions/16413498/… – neerajDorle May 10 at 4:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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