BroadcastReceiver is an Android component that responds to system-wide broadcast announcements.
0
votes
0answers
13 views
Activity cannot receive intent using intent filter and self defined broadcast receiver even the self defined action matches
In a class I want to send an intent to my Activity:
Intent broadcast = new Intent();
broadcast.setAction("coinchutc.ANNONCE");
Log.d("JoueurAgent", "Sending broadcast " + broadcast.getAction());
...
0
votes
0answers
21 views
BroadcastReceiver Error
My code tries to save the signal strengths of four wifi routers in a SQLITE TABLE. But I am getting an error
06-19 18:33:19.320: E/AndroidRuntime(3451): java.lang.RuntimeException: Error receiving ...
1
vote
1answer
25 views
How to make an application first get notifed when there is internet connection in Android?
I am developing an android application. The requirement of this application is that, my app should get notify first among all the other installed app (which are using internet permission) on the ...
0
votes
0answers
4 views
notification alarm and broadcast intent
I'm new I want to create reminder birthday. Why? Notification is not showing
then The constructor Notification(int, CharSequence, long) is deprecated.
help.
MainActivity.Java
AlarmReceiver.Java
...
0
votes
0answers
18 views
broadcast receiver not receiving intent only on Samsung Galaxy s4 mobile
I am facing a weird problem .
I have a Broadcast receiver inside fragment which is notified when login process is complete .
The code works on all the mobile phones but does not work on Samsung ...
0
votes
0answers
9 views
How to handle AT commands from a Bluetooth headset in Android?
I would like to handle an AT command (for double tap event) from a standard Bluetooth mono headset. By default, the double tap sends AT+BLDN command (Redial event) to the phone. According to Android ...
-2
votes
3answers
43 views
how to start my application when ever mobile restart or turn on
How do i set my application as startup application, so when ever mobile restarts or turned ON, my application starts.
<?xml version="1.0" encoding="utf-8"?>
<manifest ...
0
votes
0answers
18 views
Not able to create a database object and access it in a broadcast receiver
I am writing a demo sms application that can send and receive messages and show conversations .For that I had written a class that handled the complete database part .But problem is I am unable to ...
0
votes
0answers
17 views
Permission Denied checkComponentPermission owninguid Facebook
I am new to android development so pardon me for any silly questions. I know that my question has some similar results for eg. WARN/ActivityManager(5038): Permission denied: checkComponentPermission.
...
0
votes
0answers
32 views
Broadcast Receiver within Service stops working after some time
I am currently working on a self made battery widget for my android device.
Its just and ImageView and a TextView displaying the battery level in percent.
Everything works fine actually except that ...
0
votes
0answers
20 views
[Parse][Android] How to suppress push notification from being displayed when app is running?
I need to handle with a push notification in two ways:
1) Receive and put a notification on status bar of my android client when app is in background;
2) Receive and handle with a notification ...
0
votes
1answer
16 views
Widget sending multiple types of intents
I am building a widget that has multiple buttons, each one sending off its own intent to a broadcast receiver. The broadcast receiver is suppose to display a Toast message based on which button was ...
0
votes
1answer
31 views
BroadcastReceiver for wifi connection don't work correctly
I want to set my wifi off after a certain time when wifi is not connected.
The probleme that occur to me is when i remove the wifi connection
onreceive got call but say the network still connected. ...
0
votes
1answer
29 views
How to pass class reference (not object) using Intent?
I have a scenario where there are multiple Activities and a Service.
All this Activities when need to get data from any URL, starts the Service (activity's class name is passed in Intent) and ...
-2
votes
0answers
15 views
Retrieve and display message from admin console via XMPP in Android [closed]
I am new to this Android Programming thing and I've been given a task to implement XMPP in Android. My application can connect and disconnect from server, obviously. And for now the app can only ...
0
votes
0answers
27 views
how to get a network type continuously?
I'm currently working on project viewer application parameters 2G and 3G.
I want to show rxqual and rx level, and when the network is detected on the 3G network, and Rx Level rxQual will turn into ...
0
votes
0answers
6 views
GOSMS Pro stopping my app from activating
I am trying to write a messaging app but one big problem I have is GoSMS Pro that is installed on a phone. My question is how can GoSMS Pro stop other messaging app from activating from broadcast ...
0
votes
0answers
22 views
Hide Incomig call screen withe iTelephony.java
i use the iTelephony.java in my Auto call Answering project.I want to hide/delete Incoming call screen for some Incoming phone numbers and never show that numbers in call log,history,notification and ...
1
vote
0answers
26 views
Starting the application from a BroadCastReceiver (NEW_OUTGOING_CALL doesn't always work)
Well, I've written an application that starts by dialing an specific number, I have used NEW_OUTGOING_CALL(a broad cast receiver) to catch the dial event.
So far the broad cast receiver on my ...
-1
votes
0answers
20 views
Can otto replace Android component Broadcast? [closed]
I have a global data structure, if the data has been changed, I should notify all the component to change that related to the data. So, Broadcast is a choice, but it is complicated. And now, I am ...
0
votes
0answers
22 views
Control volume mode from BroadcastReceiver
I have a probleme while developping an application.
I'm calling the "onReceive" method of my "BroadcastReceiver" from "onCreate" method of the service, and it works fine, but the problem is that i ...
0
votes
0answers
14 views
Connecting two Health Devices via bluetooth with Android to get Readings from Health Device
I'm developing an android app that reads values from health device and pass that readings to my server.The app supports for two medical devices Ultra Touch mini Gluco meter and A&D Medical ...
0
votes
2answers
38 views
Calling BroadCast receiver from main activity android
I want to start broadcast receiver class from my app's main activity. Main activity has all the GUI stuff, this activity starts a service which performs all the work. For making this service start ...
1
vote
0answers
19 views
Abort GCM message broadcast not working below Android 4
Can't find a solution for this behavior:
When receiving a message from GCM the broadcast receiver from the manifest handles it correctly (creating a notification) but I want it to do another thing if ...
0
votes
0answers
25 views
How to add home screen shortcut without launching app after installation
I am using following code to add shortcut at home screen
private void createShortcut() {
String appName = getString(R.string.app_name);
// Adding shortcut for MainActivity
...
0
votes
1answer
14 views
Get SMS ID from broadcast receiver
Hi I have the following broadcast receiver so my activity is told when I receive an sms message. The only thing I haven't been able to figure out is how to get the id of the new sms. How can this be ...
0
votes
1answer
31 views
“No Launcher Activity found!” while launching a service on startup
I wrote a simple Service which should be invoked on startup.
I don't haver (or need) any activities to be invoked on startup, but only that service.
Here is my manifest - what am I doing wrong?
...
0
votes
0answers
35 views
BroadcastReceiver android SMS message report delivery
This is my first question so please bear with us.
At first I wanted to apologize for my language. I hope that it will be clear enough.
I have the following problem. Creating an application for ...
-2
votes
1answer
40 views
There is a good way to declare BroadcastReceiver? [closed]
I saw this code for scanning WIFI network on this site: http://www.androidsnippets.com/scan-for-wireless-networks.
I implemented the code in the website. It works fine, but when I put the ...
0
votes
1answer
33 views
ArrayAdapter NullPointerException in BroadcastReceiver onReceive
I have an activity where I'm using an ArrayAdapter that is declared in the class body itself:
ArrayAdapter<String> btDevArrayAdapter = null;
in my onCreate() function I do the following:
...
0
votes
0answers
35 views
android send action_call from broadcastreceiver
i want to forward all phone calls after receive a sms , so i have to using broadcastreceiver to listen incoming sms , this is my code :
public class SMSListiner extends BroadcastReceiver {
@Override
...
1
vote
3answers
30 views
How to bring application from background to foreground via BroadcastReciver
I have two classes which are MainActivity and MyBroadcastReceiver. BroadcastReceiver detects whether phone screen is on or off. My desire is to launch my application whenever screen lock is released. ...
1
vote
1answer
41 views
How Can I receive a Phone call using sensor with my android application?
I want to develop an android application where, I want to answer phone call using Proximity sensor or ACCELEROMETER sensor. In case of incoming call, when I shall get a certain value of sensor , then ...
0
votes
1answer
33 views
Wifi Broadcastreceiver onreceive
I have problems with the wifi broadcast receiver. It doesn't receive anything, onReceive is never called. Here's my code:
public final class WifiChangeReceiver extends BroadcastReceiver {
...
0
votes
2answers
27 views
Android broadcast reciever not working
I am new to android. I am working on broadcastreceiver. I want to create a receiver listening outgoing call. What I expected is when ever out going call is made write logcat " It is Ok" .
But it show ...
0
votes
0answers
19 views
BroadCastReceiver in AppWidgetProvider
I have a widget and used DATE_CHANGED to change some values on my widget.
How can i use a BroadCastReceiver in widget ?
Is there any way but extend class from BroadcastReciever?
0
votes
1answer
24 views
Android, using bluetooth inside sherlockFragment
I have a Fragment Tabs Pager and used sherlockFragment and I need to search for other bluetooth devices inside it. but I cannot registerReceiver as it's needed. I get the following error:
The method ...
0
votes
2answers
25 views
ACTION_MEDIA_BUTTON static broadcastreceiver in android 3.0+
I'm trying to capture the ACTION_MEDIA_BUTTON intent using a broadcastreceiver in Android 3.0+.
My receiver is a static inner class of my MainActivity class. It is static, because it is registered in ...
0
votes
0answers
26 views
Detecting “which application is in the foreground” and trigger an action
I've searched for many similar articles but am still not sure what's the right way to do this. I will very appreciate your insights here!
My purpose is to create a service that listens to particular ...
0
votes
0answers
39 views
Android - Calling a Service Through a Broadcast Receiver does not seem to work
I already have this application that once the user clicks a button, the main activity calls a Broadcast Receiver that in turn calls a Service which sends the GPS Location of the user to an EMail ...
0
votes
1answer
53 views
Cannot receive android.intent.action.MEDIA_MOUNTED when BroadcastReceiver is registered dynamically
I am trying to register a BroadcastReceiver programmatically to receive android.intent.action.MEDIA_MOUNTED. However, the onReceive() method never gets triggered. The same BroadcastReceiver class I ...
0
votes
1answer
27 views
Android Service Not Retaining Data onRestart
I am using an Arraylist to store user selected alert-locations and am comparing these "locations" with the user's present location in my service via a broadcaster.
On force crashing the application, ...
2
votes
1answer
42 views
Unable to record Audio via Bluetooth in Android
I am writing an android app for Recording Audio from Blue tooth, but I Unable to record Audio via Blue tooth in Android.
You can see below the code
AudioManager am;
am = (AudioManager) ...
0
votes
0answers
12 views
In an application without UI onCreate of class extending application not called
I am trying to initialize an application which has got no UI at all. For that I have a broadcast receiver for receiving an intent.
This intent receiving is working perfectly. But, my doubt is the ...
0
votes
1answer
42 views
Android setTextViewText not working
OK so I have an android widget and I've been having trouble with the android widget updating. I've used some simple hard coded setTextViewText but nothing happen when I debug the app..
My code:
...
1
vote
1answer
29 views
LocalBroadcastReceiver doesn't work from inside a thread
I am building a simple chat application. When I receive a message, I sent a broadcast message.
As this is run inside a thread started by a service, I pass the context to the thread. MyConnection is a ...
-1
votes
0answers
17 views
How can I catch the kakaotalk event in android [closed]
I want to catch kakaotalk event.
//////////////////////////////////////////////////
Here is example.
Someone send the message to me using kakaotalk.
Then my phone ringing and show the message ...
0
votes
0answers
17 views
Run speech recognition service onClick in widget
I'm using SpeechRecognizer instead of regular dialog-like speech recognition.
In short, to start listening I use
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
...
0
votes
1answer
15 views
Android Widget Failing To Update
I'm making a widget and i know some of my code such as the broadcastReceiver is wrong at the moment but it wont even update to hardcoded setTextViewText.
My problem is I've no idea why this happens ...
0
votes
1answer
46 views
how to detect app launching event in android and start broadcast reciever
I have to make a service which run in background with no icon of app and when any installed application is launched then my app detects and execute some functionality.
How can I achieve that?
Thanks ...




