In Android, an IntentFilter expresses a component's interest in or ability to handle particular data or actions. can match against actions, categories, and data (via its type, scheme, and/or path) in an Intent. It also includes a "priority" value which is used to order multiple matching filters.

learn more… | top users | synonyms

0
votes
1answer
21 views

Multiple Broadcast Receivers with identical Intent Filters

How does Android handle the case where you have two BroadcastReceivers with identical intent-filters defined in AndroidManifest.xml? Does it invoke both BroadcastReceivers? Or, does it invoke the ...
1
vote
1answer
21 views

Android: Why I am not receiving the BOOT_COMPLETED intent?

I am testing on an physical device (SAMSUNG ACE GT S5830i) But I am not receiving the BOOT_COMPLETED intent therefore the service is not Receiver is not starting This is the code I am using. ...
3
votes
0answers
25 views

HTML redirect to custom protocol only when supporting Android app is installed

I would like to have all URIs intended for my app launch my app if it is installed. And if it is not installed I would like to display a web page about my app. After looking at the following two ...
0
votes
0answers
25 views

Why would you want to configure intent filters from code?

I'm going through the Wi-Fi Direct tutorials for Android and had a quick question about how they're using an IntentFilter in the section "Set Up a Broadcast Receiver and Peer-to-Peer Manager". There, ...
0
votes
0answers
26 views

After update of Eclipse gives activitynotfoundexception

For some strange reason I get android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=geo:0,0?q=Fitness24Seven, Malmö } This ...
0
votes
1answer
20 views

How many scheme & host tags can come under intent-filter in android manifest

Need more info regarding intent-filter tag specified in manifest. I am aware that we can specify data in two forms: <intent-filter> <data android:host="com.myHost" ...
0
votes
1answer
22 views

Fetching attachments with custom extension in my Android application

What I am trying to achieve is sounds very familiar, it has been posted many times here and there in Stack Overflow as well, but I'm unable to get it done. The scenario is, I receive a mail with ...
0
votes
3answers
39 views

Start Android activity from list of activities

I am working on one android app, and in which i have one menu that shows list of Activity name.Upon clicking of any item from menu should start that specific Activity. One way i know to do this is, ...
0
votes
1answer
53 views

Intent Filters and android:pathPattern

In my application, I want to handle links that use the following pattern: scheme://host/folder1/folder2/folder3/folder4/article I got it to work temporarily, by using the following: ...
0
votes
1answer
28 views

intent-filter for a service : using a custom mime type

I want to add a custom mime so that my Android Service or a BroadcastReceiver would detect my custom files. I have seen answers to questions like How to add custom mime type? and How to add custom ...
0
votes
0answers
30 views

Do mime type intent filters work on HTTP URLs?

There is a lot of example code about that uses an IntentFilter with a scheme of "http" and the mimeType set. See the answers to Handling MIME type that is the result of a browser POST in Android, ...
0
votes
1answer
18 views

Android Intent-filter VerifyError

I have a rather unusual issue. My program works fine when opened directly. When opened via an intent-filter custom extension match it crashes with a VerifyError. The class it can't find is in ...
0
votes
1answer
35 views

Intent filter pathPrefix with '#' not working

I'm trying to set an intent filter to launch my activity when user clicks on the following URI: example.com/pathA/pathB/#pathC/someGUID so I've added the following XML to the manifest file: ...
2
votes
0answers
90 views

declaring mime type for a “custom file” that is to be sent via bluetooth

I really need help in solving this issue: I am developing an application to transfer a file from my application to other phone using Blue-tooth. When I wanted to transfer an image file, the part of ...
0
votes
0answers
21 views

android:starting the right activity fromthe notifications

I have kind of stuck over here. what I want is : My Application expects a File with ".Xcard" extension over bluetooth or NFC. I am pretty sure that when the file is received by Bluetooth it will ...
1
vote
1answer
66 views

How to register custom intentfilter to broadcast receiver in manifest file?

I have defined a receiver in AndroidManifest.xml to receive a PlAY_FINISHED action, and in other file I send an intent to that broadcast receiver like follows: public String PlAY_FINISHED = "play ...
0
votes
0answers
32 views

difference between receiver defined in manifest file and receiver registered programatically

I have noticed recently that sometimes one specific intent sent before boot complete is caught by a receiver that is registered through the manifest file but not by a receiver registered using ...
0
votes
2answers
74 views

Android Activity only works if it's declared as main and launcher activity

I'm building a music player in android. What I'm trying is to show playlist when the app launches and user click on the list item and intent is passed to the android_player activity which plays the ...
0
votes
1answer
58 views

Android App not shown in Dropbox Chooser

I have production and test versions of my app. The only difference between the two is the package name, so that both can be installed at the same time on the same device. Both apps have an ...
0
votes
1answer
30 views

Fire intent to contact app then return to own app

I have created an app that fires an intent to create a contact, this lets you choose whatever apps that has the necessary intent filters to create the contact. However, I want to have whichever app ...
0
votes
1answer
45 views

Intent filter works from Google+, but not Chrome & Facebook

I have the following in my AndroidManifest.xml file for my app on Google Play: <activity android:name="com.enigmadream.picturecode.Viewer" android:exported="true" ...
-1
votes
1answer
42 views

Android-Confusion with NFC Manifest Tags in AndroidManifest.xml

I want to open my MainActivity automatically as soon as I show the tag near by my Android Tablet. My Manifest file is shown below. <?xml version="1.0" encoding="utf-8"?> <manifest ...
0
votes
2answers
259 views

share Fb,Tw and Email using Intent.action_SEND in android

I have to post the text and email to FB,TW and Email. Here i have created one imageview.if i have to clcik these imageview means the alert dislog box is opening.Here the following 3 item is listed: ...
0
votes
0answers
31 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> ...
2
votes
1answer
38 views

Ordered broadcast to Service

I have a use case where a Service does some work on the background and needs to notify an event to two Activities and one Service. I am using a ordered broadcast because: 1) If ActivityA is on the ...
2
votes
1answer
41 views

How to write an Intent to display file with only desired extensions in Android

I am developing an android app that encrypts/decrypts file. Once a file is encrypted, its extension changes to filename.encrypted ( here filename is itself a fully qualified filename like hello.pdf, ...
0
votes
1answer
172 views

Appcelerator open/read email attachment into my app - Android

I am trying to open a custom file type from email attachment into my app. I am using intent filter for open my app when custom file was clicked. Here is my intent filter. <intent-filter> ...
0
votes
0answers
43 views

Granted permission not working when VIEW'ing Attachment

I'm trying to register my app as able to upload OPENABLE data to a cloud service, thus I add an Intent filter to the Manifest: <intent-filter> <data android:mimeType="*/*" /> ...
0
votes
1answer
21 views

FC when trying an Intent of an ACTION_HEADSET_PLUG

I'm trying the next code. IntentFilter filter = new IntentFilter(Intent.ACTION_HEADSET_PLUG); Intent headsetState = MainActivity.this.registerReceiver(null, filter); int state = ...
0
votes
0answers
15 views

how to make my app to be in the list of possible app to use when using a uri type tag

I created an app that I can use to write an uri on a tag. I used the following intent filter to be able to read the tag : <intent-filter> <action ...
0
votes
3answers
89 views

How to add flags to an APPWIDGET_CONFIGURE intent?

I have an activity registered on APPWIDGET_CONFIGURE: <activity android:name="com.tahanot.activities.NearbyStops"> <intent-filter> <action ...
0
votes
2answers
51 views

Can one intent match multiple intent-filters of same application?

Since an application can define same intent filter for different components of the application, it's very likely that intent would match multiple component for the same application. What will happened ...
0
votes
1answer
159 views

Intent filter for opening my app from Gmail's “Attach picture” / “Attach video” button [duplicate]

I would like my app to appear as an option when selecting "Attach picture" / "Attach video" from the Gmail app. (Note: I'm not referring to sharing or sending a picture to Gmail from my app.) How can ...
0
votes
1answer
27 views

How to specify in the intent-filter not to receive intents whose extra is null

I have an Android application. For some reason, I want my application not to show in the chooser dialog when the intent's extra is null. Actually, the null extra will crash my application. Is there ...
0
votes
1answer
22 views

Retrieve package name from an app which has no code

I want that an APP1 retrieve dynamically the package name of the APP2, i.e., without hard code APP2 package name. The most obvious way to do that is to define an intent-filter in one of the APP2's ...
2
votes
1answer
82 views

register as music player

I'd like to see my app in the list of player ("continue action using...") that pops up when I try to open an audio file (ie. from file browser or gmail attachment). Here are the intent filters I've ...
0
votes
4answers
114 views

Broadcast receiver works only when device reboot android.

Hi I am developing android application in which I am defining one broadcast receiver.I am calling receiver from my activity. I am defining broadcast receiver like this : public class ...
2
votes
1answer
107 views

Android : Intent resolution & ensure BroadcastReceiver is registered / did receive

Based on a checkbox preference I enable a bunch of receivers and I broadcast to them so they schedule a bunch of alarms for themselves. EDIT : The receivers both set up the alarms and wait for the ...
1
vote
1answer
19 views

Track application startup

Is it possible to check with BroadcastReceiver which application was running on the device? Read different sources it says that you can not.
0
votes
2answers
63 views

Calling install application activity from an other applications tabbed activity?

In reference with the answer to the link below. Android : Call activity of another application I tried it as firstTabSpec.setIndicator("Second Tab Name").setContent(new ...
2
votes
0answers
71 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 ...
1
vote
1answer
125 views

Android custom URI Scheme not launching app on some versions of Android, but works on others

We have an app managed by a third party that we are able to launch from one of our websites hosted on our own domain.This was working fine for a time, but sometime within the last few months it ...
0
votes
2answers
83 views

Launching Activity via Intent Viewer and browser address bar - nothing happens - only when clicking link

I'm attempting to launch an activity from the browser (which simply displays a warning icon) when a user accesses a website however when I add the intent filter to my AndroidManifest.xml the ...
0
votes
0answers
14 views

Set downloads application file icon

In the downloads application on android, there are normally icons for the files with applications that can open that file-type. Is there any way to set your application to be the icon for those files, ...
2
votes
1answer
339 views

Open my application for a particular file and URL extension - intent-filter isn't working as intended

Question: How can I get my application to open a file and url extension, unconditionally? I am at my wit's end with setting up my intent-filter as none of it is really making any sense. My end goal ...
1
vote
2answers
68 views

Android Intent launch from browser

This topic has been covered before, but I can't find an answer specific to what I'm asking. Where I am: I followed hackmod's first piece of advice here: Make a link in the Android browser start up ...
0
votes
2answers
83 views

Receiver is not working

I have two implementation receiver. First implementation: public class ApplicationStartListener extends BroadcastReceiver { Context mContext; @Override public void ...
1
vote
1answer
46 views

Intent-Filter cannot open both http and content

I can't seem to get my intent-filter to open both from an http and a content scheme. I have my intent-filter setup to look for a certain file extension (ex: ".riley"), but when I set my data section ...
0
votes
0answers
41 views

Open file type based on extention

I'm trying to have my application open a certain file from any application. Say my extension name is ".riley", I have tried to setup intent filters that aren't mime specific and my application is ...
1
vote
0answers
49 views

Why does Android kill my BROWSABLE activity?

I'm writing an enterprise application that needs to process some data in the background while the user is using an intranet website. The application's manifest properly declares the BROWSABLE intent ...

1 2 3 4 5 8