What I want: To be able to send my custom file by mail and import it with my application from the preview button in GMail or when opening it in a file browser.

What I know: I've read a lot of custom mime type handlers, that android doesn't care about file extension etc., but how to create the mime type for my custom file?

The question: Do I need to be a content provider? I just want to import files (from backup) not provide anything. I've seen people having handlers for "application/abc" saying it's working fine, but how to add that connection for my file "myFile.abc" and the mime type?

Some direction how to register/map custom mime types would be appiciated! :)

link|improve this question
Intent-Filter should be good enough. Have a look at stackoverflow.com/questions/1733195/… – pinxue Dec 20 '11 at 8:22
feedback

4 Answers

<activity
    android:name="MainActivity"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
    <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:host="{you're mime}.com"
               android:scheme="http" >            
        </data>
    </intent-filter>
</activity>

<!--
android:scheme="http" will make android "think" thats this is a link
-->

Now, when you receiving a sms with the text "http://{you're mime}.com" or clicking link on the web with this text, you're activity (MainActivity) will run.

You also can add parameters:

text = "http://{you're mime}.com/?number=111";

Then in onCreate() or onResume() methods you'll add:

Intent intentURI = getIntent();
Uri uri = null;   
String receivedNum = "";  
Log.d("TAG", "intent= "+intentURI);   
if (Intent.ACTION_VIEW.equals(intentURI.getAction())) {  
    if (intentURI!=null){     
        uri = intentURI.getData();   
        Log.d("TAG", "uri= "+uri);   
    }   
    if (uri!=null)   
        receivedNum = uri.getQueryParameter("number");    
}
link|improve this answer
feedback

Untested, but something like this should work. Put it in your AndroidManifest.xml with the activity you want to open the file:

<activity name=".ActivityHere">
    <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="mimeTypeHere" />
    </intent-filter>
</activity>
link|improve this answer
feedback

Register a custom mime type using android.webkit.MimeTypeMap

link|improve this answer
feedback

You don't realy need to create your own mimeType. You can use some file extension.
Look in this answer http://stackoverflow.com/a/2062112/1298357 . It's very helpful!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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