I have a few intents that activity sends to service. All of those are registered in manifest: <service android:name=".location.LocationService" android:label="@string/location_servic
I\'m attempting to detect when my application has been upgraded using a BroadcastReceiver and set a boolean in my Application Class.This boolean will be used in conjunction with a few other booleans t
I am trying to capture incoming sms messages for my application. In order to do that I am using a BroadcastReceiver. I have setup permissions and a filter in the manifest file. Whenever I receive a te
I\'m using an activity to get MMS attachment once a MMS is received. I have completed the MMS listener for this and it will call the activity, which will use getCo开发者_如何学PythonntentResolver() to
I have a background service that receives data roughly once per second from an external BT sensor.That data comes in, and gets sent to the UI using a broadcast intent/receiver.The live data is display
My activity should download a file and afterwards open it by sending Intent.ACTION_VIEW. The download itself works fine, I can acce开发者_运维知识库ss it afterwards in the Downloads section.
In my application, I need to know if a particular app is being downloaded from the android market or not. How Do I achieve this functionality? Is it possible to get a list of all the downloads that ar
has anyone noticed that when time passes from 23:59 to 00:00 which is a new day, emulator shows a message like:
I have a class that extends the AsyncTask. When the doing background task done, in post executed i get the static properties of other class to equal the result of doing background, n I WANT TO BROADC
I have a receiver which waits for TelephonyManager.ACTION_PHONE_STATE_CHANGED: public void onReceive(Cont开发者_如何学Cext context, Intent intent) {