Tagged Questions
A broadcast receiver is a component that responds to system-wide broadcast announcements.
25
votes
7answers
11k views
Trying to start a service on boot on Android
I've been trying to start a service when a device boots up on android, but I cannot get it to work.
I've looked a number of links online but none of the code is working. Am I forgetting something? ...
13
votes
1answer
11k views
Android Broadcast Receiver for Sent SMS messages?
I created a BroadcastReceiver and configured it with an android.provider.Telephony.SMS_RECEIVED action filter so it is called everytime the phone receives a text.
Is there some event/action or other ...
11
votes
3answers
5k views
Broadcast Intent when network state has changend
Does Android broadcast an intent when the network state has changend, i.e. from GSM to Wifi? And if so what permission do I need and what is the intent action called?
10
votes
6answers
9k views
How to determine if one of my activities is in the foreground
I have implemented a BroadcastReceiver which is triggered by the AlarmManager. The AlarmManager is initialized on BOOT_COMPLETED. So i have to declare the receiver in the manifest.
My problem is that ...
9
votes
2answers
166 views
Android: How to Detect “Turn on USB storage” event?
I am trying to detect the Turn on USB storage using BroadcastReceiver though i am able to detect the USB connected using android.intent.action.UMS_CONNECTED action
and
disconnected using ...
9
votes
5answers
8k views
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 but I'm getting nowhere, when I send a SMS to the emulator, the Intent ...
8
votes
2answers
4k views
Get battery level before broadcast receiver responds for Intent.ACTION_BATTERY_CHANGED
I have a broadcast receiver in my program to get react to the battery level like so:
private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver(){
@Override
public void ...
8
votes
1answer
3k views
android intent for sdcard ready
I have an application that uses a file on the SD card, the application runs when the phone boots, and it has become apparent that the file cannot be accessed when the program is first run as it starts ...
8
votes
1answer
2k views
Android Best Practice on Updating the UI from BroadcastReceiver to a certain activity
When i have a broadcastReceiver say android.intent.action.MEDIA_BUTTON and i want to update the current activity's UI without creating a new activity, is there any good practice on this one?
What i ...
7
votes
4answers
10k views
Android SMS intercept without notification icon or WAP-PUSH messages
Is there a way to intercept an SMS with BroadcastReceiver as for example here
but without showing any notifications to the user and immediately deleting the message that contains for example some ...
6
votes
1answer
129 views
Workaround for receiving system broadcasts with app installed to SD card?
It seems as if applications installed to the SD card do not receive any system broadcasts whatsoever. However, we'd like to start a service at boot time that listens for push notifications.
We'd hate ...
6
votes
3answers
6k views
Programmatically register a broadcast receiver
I'd like to know what is the best practice/way of programmatically register a broadcast receiver. I want to register specific receivers according to user choice.
As the registration is done through ...
6
votes
6answers
3k views
Android, Detect when other apps are launched
Hi
I'm trying to develop an app that prevents a user from getting to a specified app without a password. The scenario is...
user clicks on "Email" app (for example)
my app detects launch of an app
...
6
votes
1answer
2k views
how can I notify a running activity from a broadcast receiver?
I have an activity, it needs to response to a broadcast event.
Since an activity can not be a broadcast receiver at the same time,
I made a broadcast receiver.
My question is: how can I notify the ...
6
votes
2answers
6k views
Inform Activity from a BroadcastReceiver ONLY if it is in the foreground
Maybe it's easy, but I couldn't really figure this out right so far... I got a BroadcastReceiver waiting to get triggered by the AlarmMangager - this works fine.
Now: because the event, if it occurs, ...
5
votes
4answers
768 views
Android app architecture - where to put REST API call code?
I want to better understand how to structure an Android app where an activity fires off an API call (for example).
I'd currently implement it by putting the API call into an AsyncTask subclass, ...
5
votes
1answer
2k views
detecting disconnection from a WiFi access point
I am trying to use a BroadcastReceiver to detect when the phone has disconnected from a WiFi access point. To do this, I registered my BroadcastReceiver in the manifest:
<receiver ...
5
votes
2answers
612 views
Intercept INSTALL_REFERRER and then forward on to Google AnalyticsReceiver
I have written an install receiver to determine when an app has been installed via the Market. However, I also want to pass the INSTALL_REFERRER broadcast onto other receivers such as the Google ...
5
votes
4answers
9k views
Android BroadcastReceiver within Activity
I'm just trying this little sample project, all it does:
Activity one has a Button that sends a Broadcast. Activity two displays a toast when received.
Below is the code, the Broadcast is never ...
5
votes
3answers
8k views
Android - SMS Broadcast receiver
I have been trying to get this program to work but so far having no luck. I cannot find where I am doing wrong. I'm not sure if there's something wrong with the code, or debugging.
I'm trying to be ...
5
votes
2answers
2k views
Check INTENT internet connection
there is an Android Intent ACTION_XXX that notify me when Internet Connection is available?
I would to instantiate a BroadcastReceiver that notify my application when user enable Internet Connection ...
5
votes
4answers
6k views
Android Activity with no GUI
I have created a activity that is only meant to be launched from a link (using a intent filter.) I do not want this activity to have a GUI - I just want it to start a service and put a notification in ...
4
votes
1answer
167 views
When is the intent ACTION_DEVICE_STORAGE_LOW broadcasted?
In my application, I have registered a broadcast receiver to receive the system intent ACTION_DEVICE_STORAGE_LOW. I was expecting this to be broadcasted whenever the phone had low internal memory. So, ...
4
votes
2answers
170 views
Boot/ScreenOn Broadcast Receiver not working
I have a blank HelloWorld Application:
package tutorials.TestReceivers;
import android.app.Activity;
import android.os.Bundle;
public class TestReceiversActivity extends Activity {
/** Called ...
4
votes
2answers
50 views
How much does broadcast receiver cost for memory?
Scope: Have to update activity UI in different ways. Update depends on broadcasts received from service.
Problem: There are two common ways to find out which way UI should be updated:
register only ...
4
votes
3answers
766 views
C2DMBroadcastReceiver's onReceive is not executing (For Registration)
Im developing a C2DM Messaging application. In that i order to receive the registration id im using the C2DMBroadcastReceiver, C2DMBaseReceiver and C2DMMessaging class. I will be C2DMReceiver in my ...
4
votes
2answers
410 views
Android External App Install (on SD card), reload alarmmanager alarms on re-mount through receiver
I'm developing an android app that I want to allow users to install on their SD card (http://developer.android.com/guide/appendix/install-location.html). However, the app has some Alarms created ...
4
votes
1answer
243 views
Android Market Referrer Data Not Being Populated
I've implemented a BroadcastReceiver to receive and parse Android Market referrer data. I followed the steps here: http://code.google.com/mobile/analytics/docs/android/#android-market-tracking and ...
4
votes
1answer
655 views
Display status bar notification from a BroadcastReceiver
I'm writing code to display notifications to the user at specific times (just like the Google Calendar app).
I hence created :
a BroadcastReceiver that listens to BOOT_COMPLETED, upon reception it ...
4
votes
2answers
2k views
BroadcastReceiver as inner class
I know the BroadcastReceiver can't be used if defined as Activity's inner class. But I wonder why? Is it because the system would have to instantiate a large Activity object to just have instantiated ...
4
votes
1answer
1k views
BroadcastReceiver onReceive timeout
I extend BroadcastReceiver, and in onReceive() I do whatever I need to do.
onReceive() has a timeout, from the documentation:
there is a timeout of 10 seconds that
the system allows before ...
4
votes
3answers
337 views
PendingIntents keep caching same object
i ve been facing some problems trying to pass data through intents and pending intents to a BroadcastReceiver, concerning proximity alerts. More specifically, am trying to pass an object, that among ...
4
votes
1answer
1k views
Trouble sending Bundle with PendingIntent to a Broadcast Receiver, data lost
I am adding some basic alarm functionality to my program via the use of AlarmManager and a BroadcastReceiver class (named AReceiver.java). My problem is that the data I add to the bundle attached to ...
4
votes
4answers
6k views
How do I pass data from a BroadcastReceiver through to an Activity being started?
I've got an Android application which needs to be woken up sporadically throughout the day.
To do this, I'm using the AlarmManager to set up a PendingIntent and have this trigger a BroadcastReceiver. ...
4
votes
1answer
6k views
Android - Registering a broadcast receiver for two intents?
I was wondering is it possible to register a broadcast receiver to receive two intents?
My code is as follows:
sipRegistrationListener = new BroadcastReceiver(){
@Override
public void ...
3
votes
2answers
67 views
How to define an IntentFilter for a Broadcast Receiver
So I am attempting to make an application that will show a toast message when every a text message is received. I want the application to only show the toast, and I currently using this code to show ...
3
votes
2answers
296 views
Android: Wake phone
I am trying to figure out how to wake and unlock the phone with a service. I have referencing this post but, I can't figure out why it isn't working. This is the code that I have so far:
public ...
3
votes
2answers
332 views
getBoolean(EXTRA_NO_CONNECTIVITY) always returns false
One time that I had a prob, you guys were really helpful. So here I am again with another problem I have fallen onto... :/
I am running a custom NetworkReceiver that extends BroadcastReceiver. I want ...
3
votes
1answer
166 views
How to distinguish the screen on/off status while incoming call?
My app uses the TelephonyManager.ACTION_PHONE_STATE_CHANGED for some actions. But I want a different action while the phone rang when the user was present (screen was on) and different action when the ...
3
votes
3answers
281 views
NEW_OUTGOING_CALL not being called on Samsung Galaxy S
Trying to intercept outgoing calls, and have a solution working well on
nexus 1 stock android 2.2
HTC desire 2.2
Moto defy 2.1
But not on the Samsung Galaxy S running 2.1, anyone seen this?
...
3
votes
1answer
63 views
Enforcing security on broadcast receiver without access to calling package
I've been working on an android app that receives intents from several known applications. My question is whether there is any way to get the calling package when the BroadcastReceiver receives the ...
3
votes
2answers
477 views
Android - how to unregister a receiver created in the manifest?
I know about using registerReceiver and unregisterReceiver in Java code for dealing with receivers, but let's say I have the following in my manifest:
<receiver ...
3
votes
1answer
140 views
How to find out if in Car Mode (Android)?
is it actually possible to find out via intent (or something else) if the device is currently in Car Mode? I tried to do this with a receiver that has a global variable, however I guess the variable ...
3
votes
1answer
362 views
How to register broadcast receiver?
Here is my source code and it keeps force closing everytime I run it...
public class MainActivity extends Activity {
private static String content;
private static String phone;
private String number;
...
3
votes
2answers
2k views
How to Start an Application on Startup?
I found sample code, but it seems that the classes and string constants used in them are outdated and are no longer provided. Also can you tell me what changes to make in the manifest file. I found ...
3
votes
1answer
268 views
Binding to service that was allready started by BroadcastReceiver creates new instance of service
My Application uses a service that is started by a BOOT_COMPLETE BroadcastReceiver like this:
public void onReceive(Context context, Intent intent) {
context.startService(new Intent(context, ...
3
votes
1answer
404 views
Android Application object life cycle
I can't find the Application's object (extend Application) life cycle.
For example, what happens if I have a broadcast receiver which is called through Alarm. Will methods in Application being called? ...
3
votes
1answer
761 views
Android - How to start an application on the /sdcard after boot
Is there a way how to start and android application after a boot automatically if it is on the /sdcard?
Ok, probably by BroadcastReceiver. But which action is the right one?
ACTION_BOOT_COMPLETED - ...
3
votes
1answer
266 views
Weird “Receiver not registered” exception
In onResume() I do:
registerReceiver(timeTickReceiver, new IntentFilter(Intent.ACTION_TIME_TICK));
and in onPause():
unregisterReceiver(timeTickReceiver);
I see ...
3
votes
2answers
1k views
Android NFC tag received with broadcastreceiver
I'm trying to catch NFC tag in broadcast receiver so I wrote a simple BR that prints "asd" in the onReceive(). In the manifest xml it's desribed like that:
and I ...