Top "Intentfilter" questions

In Android, an IntentFilter expresses a component's interest in or ability to handle particular data or actions.

Android - Intent Filter?

I am trying to register my Activity so that it can be used by the Activity chooser/picker allowing a …

android android-intent intentfilter
starting android service using explicit vs implicit intent

According to the standard Android documentation, the prefered way to start a service (started service that is) is to use …

android android-intent intentfilter implicit explicit
How to mention two intent filters for An activity in android

I am writing an application to open HTML files so i am mentioning the intent filter for activity as <…

android intentfilter
Android: BroadcastReceiver on application install / uninstall

I want to install an apk file and set a broadcast-receiver in order to catch information concerning install status. I …

android android-intent broadcast intentfilter
CONNECTIVITY_CHANGE deprecated in target of Android N

I am getting warning of deprecated declaration of Broadcast Receiver. <!-- NETWORK RECEIVER... --> <receiver android:name=".…

android broadcastreceiver deprecated intentfilter android-networking
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: &…

android android-manifest host intentfilter
Android: Can I enable/disable an activity's intent filter programmatically?

I need to hide or show my app's icon in the launcher depending on some runtime information. I'd like to …

android intentfilter
what are the uses of main, default and launcher in manifest file in android

<activity android:name="ApiDemos"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category …

android android-manifest android-activity launcher intentfilter
How to add or remove intent filter programmatically in android?

Is it possible to remove intent filters from activity based on user preference? Say dial intent filter is added and …

java android android-activity intentfilter