BroadcastReceiver is an Android component that responds to system-wide broadcast announcements.
0
votes
2answers
32 views
How to keep a Android app always running (Service and BroadcastReceiver)?
I realized an android application which always has to remain activated in the background. To make that, it is enough to use a Service which remains active after the user is left the application.
...
0
votes
0answers
3 views
Null return com.nullsoft.winamp.metachanged
I trying to create broadcast receiver for Winamp player which use com.nullsoft.winamp.metachanged as IntentFilter. The problem is, the return always null, I can't get artist and track information from ...
0
votes
1answer
17 views
register and unregister broadcast reciever in a fragment
My app has action bar with 3 fragment tabs.
In the second fragment I register and unregister a broadcast reciever?().
I unregister the reciever in onPause, and register the reciever in onCreateView ...
0
votes
1answer
43 views
Android : Broadcast Receiver not working
I have a couple of Broadcast Receivers. One of the broadcasts is for Incoming Calls and the other for Outgoing Calls. I have two AVDs which I work with. I call one from the other and neither of the ...
0
votes
0answers
21 views
screen config change not working >=4.0 android version( working in 2.2 )
I am just learning the broadcast receiver implementation. I have created a demo app where app will braodcast on screen orientation change. my code is like this::
public class MainActivity extends ...
0
votes
3answers
32 views
Broadcast Receiver
I’m new to android, I’m trying to do an application using Broadcast Receiver which send the message to notification bar when wallpaper is changed on device. It’s successfully installed on device but ...
1
vote
3answers
34 views
How to access broadcastreceiver of another application
I have two applications A1 and B1.A1 have a broadcastreceiver and i want to register this broadcastreceiver from B1.So I tried
Intent intent = new Intent();
...
1
vote
0answers
22 views
home screen widget text view not updating
This is the code of my program -
package com.nadeem.todos;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import ...
3
votes
2answers
42 views
Install a android app and never run it, the app's service is runing or not?
The android app has a BroadcastReceiver to listen user's boot event. And start a background service to send some data to my http server.
The question is only install the app and never run it.
Could ...
0
votes
0answers
17 views
Is it possible to receive another app's GCM push?
I'm working on a dashclock extension, and would like the extension to receive a completely separate app's GCM messages and act on them. Is this possible?
0
votes
0answers
19 views
On Android, is it possible to register to receive updates when network communication begins and ends?
So I've been playing with BroadcastReceiver, and I've registered a receiver that notifies me when the network state changes (from on to off, or from cellular to WiFi, etc...)
private final ...
0
votes
1answer
21 views
Traverse some methods to main “call handling” activity
I'm curious if there is a possibility to traverse some methods from my application to the main call handling app.
For example if the phone is called, to show a different activity with a "Response" ...
0
votes
0answers
63 views
+50
Exclude Broadcast Receiver from Recent Application List
I have a semi-successful app on the market that uses broadcast receivers for a few of its features. As a request from many of the users, I have successfully excluded a few activities from the "Recent ...
0
votes
1answer
16 views
Get BroadcastRecevier Object from ResloveInfo
I am stuck up just now; issue is my one of activity has register one private broadcastReceiver and I need to unregister it and as usual I cannot change that file.
My approach is get all broadcast ...
0
votes
1answer
24 views
how to detect if incomming miss calls are read
I am currently detecting missed calls using:
String[] projection = new String[]{CallLog.Calls.NUMBER,
CallLog.Calls.TYPE,
CallLog.Calls.DURATION,
...
0
votes
0answers
11 views
Receiving broadcasts for main mobile features
I'm writing an Android app that needs to be able to respond to changes in the device's connectivity via 3G, WiFi, Bluetooth, GPS etc., now I know how to check these manually but I would like to take ...
0
votes
1answer
41 views
Android : Notification Manager only notify when the application is closed
I implemented a Broadcast Receiver, at OnReceive() method Notification Manager Code is written.
Custom Ringtone is being played at Notification. On click of Notification the sound stops
Issues
I ...
0
votes
1answer
30 views
Cannot Disable Broadcast Receiver
I got the logic for disable/enable broadcast receiver from here.
@Override
public void onCheckedChanged(CompoundButton v, boolean checked) {
// TODO Auto-generated method stub
if ...
0
votes
0answers
28 views
using ConnectivityManager without any activity
i have a class to control connection.
i have a BroadcastReceiver auto starter to start when booting the android
BroadcastReceiver calls a service . and service calls Connectivity class
boolean ...
0
votes
0answers
18 views
How to hide caller ID number in Android Recent Call as well as an incoming or outgoing call
I am looking for a solution to Hide the Caller ID number retrieved when placing a call or taking a call as shown in images. I looked for apps but most of them weren't useful. So finally I've decided ...
0
votes
1answer
39 views
Android BroadcastReceiver and Activity.onPause()
BroadcastReceiver Dcoumentation says:
If registering a receiver in your Activity.onResume() implementation,
you should unregister it in Activity.onPause().
(You won't receive intents when paused, ...
0
votes
1answer
26 views
MODE_PRIVATE in Broacast Receiver
I have defined a function in a class called Receiver that extends the Broadcast Receiver.
The code of the function is like this:
public List<DatabaseRow> ToUpload()
{
...
0
votes
0answers
41 views
Android AppWidget Battery-Status
I'm looking for make an AppWidget that check the battery status (level, charging/not charging).
I wrote a lot of codelines, but, even if it work perfectly, I see that put it on the screen make the ...
0
votes
1answer
18 views
Android BOOT COMPLATED in version 3.1 +
I have a very big problem. I want to call my service classes when the device is boot. I am doing that for the version before 3.1 .... My problem is; my application is consisting of only services and ...
1
vote
2answers
35 views
Create Notification with BroadcastReceiver
I tried to create a Notification with this Code:
private void setNotificationAlarm(Context context)
{
Intent intent = new Intent(getApplicationContext() , MyNotification.class);
...
0
votes
1answer
16 views
screen off does not Recive Broadcast
Screen Off ,Broadcast Receiver does not call some time it will execute but mostly wifi state change event is called .i have also set up the priority of screen off but does not call or some time call ...
0
votes
1answer
34 views
How know when any app send SMS
How I can khow when (and address, body etc) any application send SMS (MMS)?
I find many examples for broadcastreceiver on receive SMS, but none on sending SMS.
I can't find identfilter's action on ...
0
votes
1answer
21 views
Pop up notification when having missed calls
I am working on an android app.
I need to popup a message every time I have missed called.
I am retrieving missed calls using CallLog.Calls.CONTENT_URI.
I need some advices. How to do this?
0
votes
0answers
30 views
Broadcast receiver works in emulator but not in phone
i'm working on an app which when enabled will reject incoming calls with a predefined sms. my app works fine in emulator. i tested it with two emulators. when i call one from another, it works ...
0
votes
1answer
28 views
How to know that my app is in foreground on screen unlock
Every-time i want to show an add screen after screen unlock on only if my application is in running sate i mean foreground (User currently uses it). I done this through
"user_present permission and ...
0
votes
1answer
58 views
my sms receiver can't accept new sms
i want to receive sms on my application, but when i try to get new sms my application didn't get the new sms. I cannot find where I am doing wrong. I'm not sure if there's something wrong with the ...
0
votes
2answers
29 views
How to update the TextView of an Activity with the current value of a counter running in the background?
I have a counter that increases by 1 every 1 second displaying
its current value in a TextView.
Everything works fine until the Activity is destroyed and then recreated.
In those cases, the counter ...
0
votes
1answer
25 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
7 views
I am facing issue after install a app then automatic backup done
I have made a sms backup app, and i have used following permissions in my project
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission ...
2
votes
0answers
28 views
How to replace old document with new document in mobile storage using download manager?
My question is I need to use sync function after every 15 minutes, So what I want is, I will send doc_id to web server and server will return a new doc_Id with some fields, what i want is to replace ...
0
votes
1answer
24 views
1. Launch app by broadcastreceiver ; 2. Custom caller id
I have two questions:
I would like that my broadcastreceiver will be the mainlauncher (not activity !!). How to do it?
I would like to write a custom incoming call window / custom caller id. How ...
1
vote
0answers
27 views
how to broadcast my voice From iPhone to Web using shoutcast/icecast [duplicate]
how to broadcast my voice From iPhone to Web shout cast/ice cast , basically I have seen many of the code snippets just like Audio Streamer (in this code audio streaming through URL) , now I want to ...
0
votes
1answer
22 views
AlarmManager opening (Alert)Dialog
My MainActivity sets an Alarm (or multiple Alarms).
When the alarm goes of I want to show an AlertDialog that plays the alarm sound, shows info about the alarm and something like OK and delete, after ...
21
votes
2answers
404 views
+50
Facebook's “Messenger” has a SMS Broadcast Receiver that takes highest priority after reboot
Facebook's Messenger, has a priority of 2147483647, for their android.provider.Telephony.SMS_RECEIVED broadcast receiver, declared in their manifest.
(It's sad we are forced to not follow the ...
0
votes
1answer
43 views
Broadcast receiver is not stopping
i am working on an app that will automatically decline incoming calls from specific numbers and send an sms in return.my broadcast receiver should be enabled from my app only.
so, i added ( ...
0
votes
1answer
29 views
Aletrnative solution for LocalBroadcastManager
How to achieve the LocalBroadcastManager functionality using the normal broadcasts programmatically without keeping any thing in the manifest. My goal is to limit my broadcast scope to my own ...
1
vote
3answers
41 views
BroadcastReceiver onReceive triggered when registered
I have a broadcast receiver which is being triggered the moment it's registered (and subsequently retriggered with onPause / onResume), surely this is the wrong behaviour? Have I missed something ...
0
votes
2answers
32 views
avoid to recive Broadcast Reciver when app is pause or in background
i have registered device level Broadcast Receiver ( android.net.wifi.WIFI_STATE_CHANGED) ,it is working fine to monitor WiFi signal but i want to Lassen Receive class only when app is active or ...
0
votes
2answers
50 views
Invoke native Android dialer, ignoring all other broadcast receivers
I have multiple apps. When I make a call from one, I don't want any of the others (if on the phone, which may or may not be) to intercept it. When doing this
Intent dialIntent = new ...
0
votes
1answer
35 views
Custom intent not received
I've two activities, A and B. Activity A catches the intent with a broadcast receiver, activity B fires it.
Code of activity A :
final BroadcastReceiver mReceiver = new BroadcastReceiver() {
...
0
votes
1answer
48 views
update Widget Non periodiccally
I have a widget that contains a TextView that i want update only when Onreceive(){this receiver is not the one implemented for widget} method is invoked. I dont want to update the widget periodically ...
0
votes
4answers
37 views
Multiple custom broadcasting (how to handle)
I want to add a custom broadcast receiver to my app. and I have 3 methods that should do the broadcast. and in my onReceive method i want to identify which method did the broadcast. I have 3 methods ...
1
vote
1answer
46 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
35 views
How to detect headphone plug event in “offline” mode
I know how to detect headphone plug in event if my application is running. You have to register broadcast receiver for ACTION_HEADSET_PLUG. But you can't capture this action using Manifest declaration ...
0
votes
1answer
31 views
AlarmManager does not work when app is force closed
Documentation for AlarmManager startes that
Note: The Alarm Manager is intended for cases where you want to have your application code run at a specific time, even if your application is not ...





