android - How can I list my app for download files? -


i want download files browser through application. trying list app in complete action using dialog. shows other action view files, etc in case of download files doesn't show in dialog. how can list app in image?

i have used these filters in activity

<intent-filter> <action android:name="android.intent.action.send" /> <action android:name="android.intent.action.view"/> <category android:name="android.intent.category.openable"/> <category android:name="android.intent.category.browsable"/> <category android:name="android.intent.category.default"/> <data android:mimetype="*/*"/> 

example image

i have done adding these filters , it's working cases.

 <intent-filter>             <action                 android:name="android.intent.action.main"/>             <category                 android:name="android.intent.category.default"/>             <category                 android:name="android.intent.category.launcher"/>             <category                 android:name="android.intent.category.browsable"/>             <category                 android:name="android.intent.category.app_browser"/>             <category                 android:name="android.intent.category.notification_preferences"/>         </intent-filter>         <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="googlechrome"/>             <data                 android:scheme="http"/>             <data                 android:scheme="https"/>             <data                 android:scheme="about"/>             <data                 android:scheme="javascript"/>         </intent-filter>         <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="googlechrome"/>             <data                 android:scheme="http"/>             <data                 android:scheme="https"/>             <data                 android:scheme="about"/>             <data                 android:scheme="content"/>             <data                 android:scheme="javascript"/>             <data                 android:mimetype="text/html"/>             <data                 android:mimetype="text/plain"/>             <data                 android:mimetype="application/xhtml+xml"/>         </intent-filter>         <intent-filter>             <action                 android:name="android.intent.action.view"/>             <category                 android:name="android.intent.category.default"/>             <data                 android:mimetype="multipart/related"                 android:scheme="file"/>         </intent-filter>         <intent-filter>             <action                 android:name="android.intent.action.media_search"/>             <category                 android:name="android.intent.category.default"/>         </intent-filter>         <intent-filter>             <action                 android:name="android.speech.action.voice_search_results"/>             <category                 android:name="android.intent.category.default"/>         </intent-filter>         <intent-filter             android:priority="-101">             <action                 android:name="android.nfc.action.ndef_discovered"/>             <category                 android:name="android.intent.category.default"/>             <data                 android:scheme="http"/>             <data                 android:scheme="https"/>         </intent-filter>         <intent-filter>             <action                 android:name="android.intent.action.search"/>         </intent-filter>         <intent-filter>             <action                 android:name="com.sec.android.airview.hover"/>         </intent-filter> 

Comments