Top "Intentfilter" questions

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

"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 …

android uri intentfilter
Sharing Bitmap via Android Intent

In my android app, I have a bitmap (say b) and a button. Now when I click on the button, …

android android-intent bitmap intentfilter
How to register a custom Intent filter to a broadcast receiver in AndroidManifest.xml?

I have defined a receiver in AndroidManifest.xml to receive a PlAY_FINISHED action, and in other file I send …

android broadcastreceiver intentfilter
Android broadcast receiver not receiving intent

I have two apps that I made, and am trying to send an intent from one to the other but …

android android-intent intentfilter android-broadcast
Android action.MAIN and category.LAUNCHER function

We mention android.intent.action.MAIN and android.intent.category.LAUNCHER as Intent filter of the launcher activity in the …

android manifest intentfilter
Package rename and error "Activity class does not exist"

I have a splash activity which starts another activity like this public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(…

android intellij-idea android-intent intentfilter
Android IntentService can't instantiate class; no empty constructor

I have a MainActivity class that needs to access an online API (thus using network resources). This requires a background …

android broadcastreceiver intentfilter android-intentservice
What are Intent Filters exactly?

I've read lots of articles about intent filters and I really can't understand exactly what they do? so please if …

android intentfilter
Android SMS receiver not working

I'm trying to write a simple application that attempts to receive SMS messages and handle them. I've followed several tutorials …

android sms broadcastreceiver intentfilter
Intent filter using path,pathPrefix, or pathPattern

My test uri string is http://test.host.com/path/test.html?key1=val1&key2=val2 And I make …

android android-intent uri intentfilter