The receiver tag has no wiki summary.
1
vote
1answer
31 views
programmatic vs static broadcast recievers in android
In my app, I am utilizing GCM and push notifications.
However, I am a bit concerned regarding broadcast receivers.
In the app, I see the broadcast receivers are being declared 2 types.
static via ...
0
votes
0answers
28 views
Register Broadcast receiver in button click
The receiver is not getting registered when the button is clicked. What am I doing wrong?
private void AppSatartConfirmationdialog() {
AlertDialog.Builder bi=new AlertDialog.Builder(this);
...
0
votes
0answers
15 views
Receiving Android Google Play Music broadcast twice
I hope you're having a good day :)
Let's get to the point... In my manifest file I have added a receiver like this :
<receiver android:name="com.example.app.AndroidMusicBroadcastReceiver" ...
0
votes
1answer
16 views
Getting unwanted multiple intents on broadcast receiver
Can anyone give some hints why this broadcast receiver receives multiple intents? Example I sent only one sms but broadcast receiver received it multiple times.
I already checked on this threads but ...
0
votes
3answers
34 views
Sent message or received message?
1) As I known, [self setDate:...] mean self is receiver and setDate: is message. So which is the sender ?
2) I set a button with action (IBAction)buttonPressed:(id)sender. I understood that this ...
0
votes
0answers
19 views
xmldocument & receiver on sharepoint
I'm developing on sharepoint since few months, and I begin to understand the structure of Sharepoint. However, there is some things I don't understand.
For example, I don't understand how work the ...
1
vote
1answer
38 views
background service with data for later use best practice
I'm writing an application that needs to register the actual location every minute, whether it's in foreground or background. When the user decides it's time to stop tracking, I want to gather all the ...
-1
votes
0answers
18 views
Bit Error Rate calculation for IM-DD receiver [closed]
I need to plot the BER for APD based IM-DD receiver.
Does anyone know how to calculate the BER for APD based IM-DD receiver?
I know the formula to find the APD based IM-DD receiver for Gaussian ...
1
vote
2answers
28 views
How to check if the user is in an application on android?
I'm making an animated clock widget for Android and I would like to optimse the refreshing process by stoping it when the clock is not visible.
To do so, I want to check if the user is on the home ...
0
votes
1answer
37 views
Not able to catch each sms status
Im trying to catch the status of each sms delivery but my code is not getting it but instead the status of only one message.
Anyone can give hints?
This si my code.. This is working but I need to ...
0
votes
1answer
34 views
using broadcast receiver to dismiss notification
I have here a code by which a broadcast receiver will toast..however this is not my concern, I would want to know how to(inside) the boradcast receiver class to get the notification and dismiss it ...
0
votes
1answer
20 views
MidiSystem.getReceiver() freezes up JFrame
I'm making a program that involves playing MIDI sounds, and just today I encountered a problem where calling
MidiSystem.getReceiver()
or opening up a MidiDevice, totally prevents me from making a ...
0
votes
0answers
28 views
Facebook Send Button: Image and Link are missing at receiver
Everything is OK with the like button and with the send button when you use it on the website, the image appear in the messagebox.
No Errors at FB Debugger.
But when the reciever gets the message, ...
0
votes
1answer
41 views
Java: single class to send AND receive
I'm writing a Selective Repeat program with the specification:
"Implement the sender and the receiver entities in the same class (SRNode) without any loss of generality. Each process of SRNode can ...
1
vote
1answer
34 views
Enable or disable registered receivers
I have problems providing correct attributes to "setComponentEnabledSetting()" - I get IllegalAttributeException saying that .class can't be find, or doesn't exist.
Receivers are declared in ...
1
vote
1answer
19 views
Track application startup
Is it possible to check with BroadcastReceiver which application was running on the device? Read different sources it says that you can not.
0
votes
0answers
23 views
Proof AlarmManager if receiver running
I have an AlarmManager where start a receiver as own process (1h-intervall).
When the phone make an reset, the process is going away.
Now I will proof on startup of my activity (alternative: on boot ...
0
votes
1answer
532 views
Android Bluetooth Broadcast Receiver Issues with ACL_CONNECTED and AC_DISCONNECTED
I am writing an app that detects whether or not a bluetooth device is connected. After doing some research I found that the best way to do it was to use a broadcast receiver with some bluetooth ...
0
votes
0answers
230 views
SMS Broadcast Receiver issue in API 17 (JellyBean)
Ive been trying to create an android application that shows a custom dialog on the screen when a SMS is received. The application works great on API 11 (GingerBread), but does seem to be shwoing ...
0
votes
2answers
99 views
Services in Android is not getting Started in BroadCast receiver
I am trying to make an android app that must do some database activities like storing phone number and name etc in the SQLite DB . This all Data Base stuff is done as a service. The service must start ...
1
vote
1answer
116 views
Register broadcast receivers for SCREEN_ON / SCREEN_OFF in a service
Can someone confirm whether I'm following proper design of desired functionality?
I need to listen two types of intents by broadcast receivers when my app is at least once ran on a device, which ...
0
votes
2answers
205 views
broadcast receiver as inner class
this is with reference to this link
i am getting illegal access exception when i run the code. i have tried all the possibilities for the manifest as given in the above link.
my logcat error is as ...
-1
votes
1answer
52 views
BluetoothDevice.ACTION_NAME_CHANGED on a BroadcastReceiver
How can I manage the BluetoothDevice.ACTION_NAME_CHANGED on a BroadcastReceiver. I'm familiarized with the BluetoothChat example.
---Edit---
private final BroadcastReceiver mReceiver = new ...
0
votes
1answer
45 views
Creating notifications on receive a call
I am creating an application and a certain part of my code I need to create a notification when I receive a call. The problem is that I am not able to implement the notification, since I have to pass ...
0
votes
0answers
87 views
android sms workaround for sending images? would this work?
Okay so I'm fairly new to developing for android but have plenty of experience with Java. I'm currently building an app, and part of its functionality allows users to send a select number of little ...
0
votes
1answer
38 views
Why receiver do not respond?
In my application myApp1 I have only one receiver
<receiver
android:name="com.plugins.Plugin">
<intent-filter android:priority="1000" >
<action ...
0
votes
0answers
80 views
how to register a receiver for capturing completed download?
I was checking some tutorial on how to notify the receiver when the DownloadManager has completed the download, they register receiver pragmatically like this
context.registerReceiver(onComplete, new ...
-1
votes
1answer
104 views
How i can Write a Broadcast Receiver for a Shake Sensor Event Listener ??? [closed]
I am a beginner in the android field.
I can successfully write a Shake event listener Using this technique.
How i can convert this code in such way so that i can detect shake event outside my ...
0
votes
0answers
67 views
Android: Widget says Failure loading widget
When I click on my widget at the homescreen the Flash Light turns on and the message "problem loading widget" pops up! Does someone know something about this issue?
Before / After Clicking the ...
0
votes
0answers
49 views
How to pass information to receiver automatically when DownloadManager finishes download?
I am downloading a zip file from this ShowSingleSceneActivity, and I hope to unzip the file automatically when it finished. So I created a handler and receiver in this activity to do the unzip job. ...
0
votes
2answers
78 views
How do I receive download complete broadcasts issued only by my app?
I used the following method, but how to set the broadcastPermission to only receive broadcast from the app itself?
context.registerReceiver(onComplete, new ...
0
votes
0answers
7 views
Where should the receiver 's scheduler be created?
I am trying to decompress the zip file after it is downloaded from the internet, so I registered a receiver in activity B(where the download button located), by using
...
1
vote
2answers
121 views
TextView on widget not updating using OnUpdate method
I have a widget showing a digital clock using TextView in which i want to update more frequently than the allowed 30 mins in the xml. Ive seen examples but id like someone to help me with my specific ...
1
vote
0answers
126 views
Connect to satellite tv receiver, tv remote control iOS
I've been googling for a while looking how I can develop a remote control for satellite tv receiver. I've heard that LG Tv's have an internal server wich receives requests from an app for example, the ...
0
votes
2answers
131 views
Android App won't start on boot
I read loast of tutorials about how to make an app start at system boot (Link, Link...).
My receiver looks like this, the rest like described in the tutorials:
<receiver ...
0
votes
0answers
51 views
Enable Receiver programmatically. Show widget
In my AndroidManifest.xml:
<receiver
android:name=".WidgetProvider"
android:label="@string/app_name"
android:enabled="false" >
<intent-filter>
...
0
votes
0answers
78 views
Broadcast receiver stops when user presses back button
I have 1 activity and 1 service. When main activity starts, it calls startService(); In my service i have some code which is running every 1 second. In my activity i have registered BroadCast receiver ...
1
vote
1answer
49 views
Detect input from another phone?
I am creating an app and would like to add a feature. What I want to do is be able to detect some sort of input code from another phone. For example, if phone A has my app and is talking to someone on ...
0
votes
1answer
164 views
Pass result from DeviceAdminReceiver back to calling activity
My activity (MyActivity.class) executes the method to set the screen lock as follow:
startActivityForResult(Security.setLockscreen(getBaseContext()), 1001);
Then my receiver class logs the change ...
0
votes
2answers
45 views
receiver and service
With the courtesy of an stackoverlow user we written this code. Should be starts a toast at specify hour but doesn't run.
Can someone help me to discover where's the problem?
thanks!
public class ...
0
votes
0answers
75 views
ACTION_USER_PRESENT in ICS causes Force Close
I am trying to receive the event ACTION_USER_PRESENT when the screen is unlocked. I have a registered broadcast receiver which should give a log message when the screen is turned on, then unlocked. It ...
0
votes
0answers
204 views
How to get a value from another list in SharePoint 2010
Here's my problem: I have a reference list which contains a dozen or so rows, each one with 10 columns. The rows have the value of their title field set to AA,BB,CC,...LL The columns are named Level1, ...
1
vote
1answer
151 views
How can I check that an item already exists in a SharePoint list?
I wish to create an event receiver that, when adding an item through an InfoPath form from one list to another, it will not create a new item if the item already exists, it will just update the ...
0
votes
0answers
126 views
How support Airplay protocol on android platform?
I want to write a recevier program on Android platform.
The program can support apple equipment Airplay function, but it is not familiar with the apple bonjour service, mDNS, and RAOP protocol and ...
2
votes
1answer
120 views
Broadcast Receiver Triggered When EditText is Long Pressed
I've only recently started using BroadcastReceivers, and I wanted to create a service that would be triggered when someone long pressed on an editText. I think on one of my older phones (Original EVO ...
0
votes
0answers
14 views
Is there broadcast for let's say the active app is changing in android?
I wonder if there exists a notification that helps to get a listener/receiver get activated, when the active/foreground app is changing. A way would be to poll at the processes, but this seems not ...
0
votes
1answer
84 views
Open activity when screen goes off
I'm trying to make a lock screen app where the app shows up when the screen is awoken. I currently have a broadcast receiver that listens to ACTION_SCREEN_OFF and ACTION_SCREEN_ON and starts the ...
1
vote
2answers
218 views
SMS Broadcastreceiver not working
I discovered that when GO SMS or other similar applications that use SMS are installed on an Android mobile, SMS Broadcastreceiver is not called.
Should I remove all that applications in order to ...
1
vote
1answer
404 views
Android - Incoming SMS Listener (ICS)
I have created a BroadcastReceiver, which actualy handles incoming SMS. this is code running fine in android 2.3.3 but somehow am not able to run the same code on devices running ICS. Please help me ...
2
votes
3answers
755 views
Android DownloadManager get filename
In my app you can download some files. I used the android DownloadManager class for downloading. After the download is completed, it should show me a message that the file was downloaded. The problem ...


