How to get the file name from the intent?

Posted by Sumithran on Stack Overflow See other posts from Stack Overflow or by Sumithran
Published on 2010-06-04T06:08:49Z Indexed on 2010/06/04 6:19 UTC
Read the original article Hit count: 176

Filed under:

This is my mainfeast file.After using intent filter i download the ics file from the mail attachment.when i open the downloaded file it start my application. I need to get the file name and data of the selected file in my application. What should i do in the mainfeast and the java file. I am very new to android can any one help me????

<application android:label="@string/app_name" android:icon="@drawable/icsicon">
    <activity android:name=".setMIMEfile" android:label="@string/app_name"><intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.ics" />    

© Stack Overflow or respective owner

Related posts about android