The intent-filter tag has no wiki summary.
0
votes
1answer
26 views
android nfc intent-filter to show my application when nfc discover a tag
I am writing an app that works with NFC and MIFARE CARD.
When my NFC device detect a card, it shows me the list of application that can use NFC, but my application is not mentioned.
What I am ...
0
votes
0answers
30 views
Launching smb files with intent filter before remote fetching occurs
My app launches files that one can select over a 3rd party file browser (e.g. ES File Explorer, or File Manager HD). I use the following in my manifest for this to work.
<intent-filter>
...
1
vote
1answer
50 views
Android image share intent - how can I exclude a particular handler from the list?
In my Android App I have an image loaded from Instragram API and I share it via the generic Share Intent like this:
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
Uri uri ...
0
votes
0answers
21 views
Need to associate a file with only our app and not associate other files with our app, consistently across Android devices
My app requires that a client x509 certificate be installed into the app key-chain The client certificate is delivered to the app via email attachment. The certificate is in a PKCS#12 (.p12) ...
0
votes
0answers
31 views
Android app: prevent user to leave the app through backdoor
Background:
I am writing an Android app which is installed in a kiosk. The "kiosk" is an Android tablet which is rooted, with HideBar activated so as to hide the "Back" and "Home" button.
The app ...
0
votes
0answers
37 views
android gmail preview filenotfoundexception?
Help My first question:
I can't get to an attached file in gmail when the user clicks preview. I need to remove preview from my intent filter or somehow get permission to get the attachement?
I ...
2
votes
0answers
70 views
Intent-Filter won't properly respond to content
I'm having trouble getting my application to respond to the content filter scheme.
I have an intent-filter
<intent-filter>
<action ...
2
votes
0answers
133 views
android gmail opening app attachment URI issue with new Gmail app version
I have the following intent filter in my Manifest.
This code used to work fine on a Nexus 7 with Android 4.2.2 until 2 days ago when Google did an update to their Gmail app. My application no longer ...
0
votes
1answer
117 views
app installed on SD card not receiving intent action
apps installed on sd card does not receive (using BroadCastReceiver) the intent.action_boot_completed nor intent.action_extra_applications_avaliable nor intent.action.media_mounted. I would like to ...
8
votes
5answers
262 views
How to know that an app is going to be uninstalled in android?
I want to implement something like AppLock application is doing.
If in its settings it is set to lock applications uninstall/install, then while uninstalling any app (precisely on clicking the ...
0
votes
0answers
80 views
Path pattern for intent-filter
I want to launch Android application on clicking URL (may be in e-mail or SMS).
How to write different path patterns for these two URL?
http://www.hostname.com/folder1/file.ext
...
0
votes
2answers
84 views
Preventing main activity from being launched if running already
I have an application that is launched via an intent-filter action. The problem is that every time the event/ action occurs, Android displays a dialog asking to launch the app even if it is already ...
0
votes
3answers
163 views
BroadcastReceiver declared in Android Manifest, App force closing. Help please
I keep getting Force close error while testing this app. App opening fine.. but after 3-4 seconds force close error dialog box coming up. code included.
Any help will be appreciated.
Thanks
Manifest
...
0
votes
2answers
54 views
Application not being displayed in the list of default apps on device
I am trying to write a photo viewer application and have put the below in my Manifest file
<activity
android:name="com.example.testimageintent.MainActivity"
...
0
votes
0answers
106 views
Android: open Activity from URL show instead of calling app in recent apps
I have an IntentFilter set in my Activity like:
<intent-filter>
<data android:host="www.example.com" android:scheme="http" android:pathPrefix="/d/"/>
<action ...
0
votes
1answer
107 views
android browse file intent with defined extension
I need to create intent that will open file manager (if any installed) and I want file manager to show only txt files to user, so user couldn't choose file with wrong extension.
private static ...
0
votes
1answer
199 views
Open email attachment with my app
I would like to open email attachments with my app. I added that to my manifest file:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
...
0
votes
1answer
84 views
How to have several BROWSABLE activities in single app?
I have an application with 2 activities, that should respond to android.intent.action.VIEW. They are defined like in manifest
<activity android:name=".FirstActivity">
<intent_filter>
...
0
votes
1answer
230 views
Associate a new file with Android app
I would like to register a new file extension (.db_backup) so that all files with this extension open with my app.
Basically files of this type are backed up to email as an attachment. While opening ...
0
votes
2answers
395 views
How to create/disable intent-filter by programmable way?
I have three activity and three Intent Filters for them in the Android Manifest.
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
...
0
votes
2answers
122 views
Android intent opposite of setComponent
I know I can force an intent to use a specific application/activity by using intent.setComponent(). But is there a way to say that it should not use a specific app/activity?
Why I need this:
My ...
1
vote
0answers
88 views
how to set intent-filter only accept jpg?
I want my Activity could accept jpg by Gallery.
so i set
Intent picker = new Intent (Intent.ACTION_PICK);
picker.setType ("image/jpeg");
But the gallery still shows images of all formats .
how can ...
0
votes
1answer
119 views
Unable to Receive ACTION_NEW_PICTURE on Samsung and HTC UI's
I have an app which has a broadcast receiver receiving the action ACTION_NEW_PICTURE. This receiver works fine on most devices except the ones with the htc and samsung camera UI's.
Here's my ...
0
votes
1answer
58 views
Can we use <action.NDEF_DISCOVERED> without data field?
How to filter all the tags with NDEF message.
I tried this
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
...
0
votes
1answer
835 views
Open Android app from URL using intent-filter not working
I have an Android app that people use as a replacement for a website. Hence, when users encounter an URL to the website, I want to give them the option to "open the URL" in my app instead of in the ...
1
vote
2answers
393 views
Android intent filter not launching app from browser
This is a really strange problem... last week I was using this intent filter to launch my app from the browser if a certain URL was called. It worked fine then. Today, it won't launch my app anymore.
...
0
votes
1answer
71 views
How to use the Android Intents?
I was try to launch browser to do authorization in twitter, and want it to return to my app.
I was declare intent-filter in AndroidManifest.xml as:
<intent-filter>
<action ...
1
vote
2answers
344 views
Android: How do I get a list of installed applications and show them to the user
I've looked at many different variations of code on how to get a list of installed applications and show them in a ListView to the user but none have been successful for me. What I'd like to know is ...
3
votes
1answer
333 views
Detect the sharer used to share some content
In the application I'm currently working on I need to know what "ACTION_SEND sharer" (Twitter, Facebook, SMS, Email...) the user used to share a content to log it for statistic purposes. Is there ...
1
vote
1answer
238 views
receive sms sent to a particular port
It is a recurrent question but I wasn't able to find a complete enough documentation on this topic.
I already have a working application able to intercept SMS, when it is send with default parameter ...
0
votes
0answers
139 views
Android Intent: Need help creating filter to catch this intent
I'm trying to allow my application to open files from other applications such as file management apps and email apps (when they come in as attachments)... I've got this working for a large number of ...
0
votes
0answers
68 views
How do I stop XML email attachment translating to HTML in the GMail app
I am trying to load a file into my application. The file is a standard KML file and if I load it as a file (for example using dropboxes) it works perfectly. If I send the file via email it transfers ...
0
votes
1answer
140 views
How do i find out the disabled receiver's intent-filter?
for example
<receiver android:name=".BootReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
...
0
votes
1answer
179 views
ActivityNotFoundException - Intent Filter doesn't work anymore
I have an application that wants to handle SGF files. It has these filters in the manifest:
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
...
3
votes
1answer
82 views
Some Issues about Using BroadcastReceivers
I want to use BroadcastReceiver in my application as AsyncTask result indicator in different Activities and therefore AsyncTasks too. I think my approach is little wrong or I missed something.
Here ...
1
vote
1answer
70 views
Broadcast Receiver listening to text selection
Is it possible to define a broadcast receiver that listens for text selection made on any application
0
votes
2answers
163 views
ACTION_SEND intent-filter for all images including Picasa
I have this declared in my AndroidManifest.xml:
<activity
android:name="x.y.z.MyActivity"
android:label="@string/app_name"
android:theme="@style/MyTheme" >
...
0
votes
1answer
110 views
android magnet link data filter
I want to launch an Android activity from my app when the user selects a magnet link in the browser.
According to the docs, A URI is specified by separate attributes for each of its parts:
...
2
votes
2answers
271 views
Android BroadcastReceiver without intent filters
I saw in few android ad networks sdks that they are declaring BroadcastReceiver with no intent filters. Something like this:
<receiver android:name="com.example.SampleReceiver" />
My guess is ...
0
votes
3answers
524 views
How can I start MAIN activity with the help of <intent-filter>?
When I declare my main activity in this maner:
<activity android:name=".MyActivity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="stateHidden"
...
26
votes
3answers
19k views
“Exported activity does not require permission” when attempting to launch from a URI
I am trying to launch an Android app from a URI using this SO question as a reference.
I have a manifest file with the following declared activity:
<activity android:name=".MainActivity">
...
0
votes
1answer
386 views
Custom url scheme in salesforce android app
I am looking to implement a custom url scheme (e.g. myapp://) so that my android app can be opened on the browser and/or from an email link. I understand that there are a lot of answers here that ...
1
vote
1answer
468 views
Open my app when an nfc tag of a custom format is discovered
I'm making an app for stock management. Each stock_item will have a tag, with a unique identifier, with a custom_format.
Like this:
stock_manager_pro:stock_item:12345
or
...
1
vote
1answer
531 views
Send an intent to only one service
Is it possible to send an intent only to one service when this one is running?
I'm aware of the functions startService() and onStartCommand() but I don't want "start" the service, in my case it was ...
0
votes
1answer
782 views
Android Intent-filter mimetype and host/scheme
I've seen in some apps that when you click on a link it asks you if you want to open it in an app. I've seen in many posts that you can do
<intent-filter>
<action ...
0
votes
2answers
70 views
Can I set the name of the app to something other than the label of the activity with the intent-filter?
I have an app with four activities. I have set the intent-filter on one of them so it will be displayed first to the user when he starts the app. It has a label that says "Add expense".
Now the name ...
7
votes
1answer
2k views
Broadcast Receiver Register in Manifest vs. Activity
All,
I need some help to understand when I can expect my broadcast receiver will work when just registered in the manifest versus having to be registered from a running activity or service. So for ...
-1
votes
2answers
382 views
Android - URL pattern in intent filter
I can't get my app registered to open specific URLs. I tried with pathPatter like: ".*/spreadsheet/.*" and similar, wit or without host... but nothing happens. My app just won't register to open these ...
0
votes
1answer
224 views
Most specific NFC-Tag-Intent-Filter possible?
I'd like to detect all plain-text NDEF-NFC-Tags that have a certain prefix (e.g. "mytagprefix1234567890". What is the most specific intent-filter I could use for this senario to make sure that my ...
0
votes
1answer
369 views
Determine type of content received via Intent Filter
I am working on an app which I want to register in the "Share" list. That part is already taken care of using the following tags in the manifest file:
<intent-filter>
<action ...