Questions tagged [receiver]

An object that receives some messages.

An object that receives some messages.

389 questions
0
votes
0 answers

Receiver doesn't work after restart

After i restart or turn on my device my receivers don't working. When i don't restart or turn on my device they are working... Manifest:
user3997118
  • 71
  • 2
  • 10
0
votes
1 answer

Android RAM usage error with broadcast receiver in service

I have written simple service which have one broadcast receiver that listens for incoming sms messages and write info about message to database. Problem is that every time message is received, RAM usage of service increases by 1-2 MB. //…
Kralj
  • 1
0
votes
1 answer

Start Android application at boot time without latency

I want to launch my application after boot completed. I followed steps in here. Now, the application starts after boot completed but it takes 1-2 seconds. It means I see default launcher screen for 1-2 seconds. I don't want to see default launcher…
sukru
  • 5
  • 1
0
votes
1 answer

Query for when my service will be run in Android?

I have a service that fires off every 5 minutes or so... How would i query android to see when this service is scheduled to go off programatically?
Chris Legge
  • 739
  • 2
  • 9
  • 24
0
votes
0 answers

Android Gmail/Email Interactions

Is there a way to programmatically through an app on the phone monitor for a specific email address that an email was sent to and move it to a new label/folder? This question is for both Gmail apps and the native mail apps. I want basically an…
0
votes
1 answer

Broadcast Receiver and Preference Checkbox not working together

Any help is appreciated. I have a Broadcast receiver in the manifest that when is android:enabled="true" receives the broadcast and starts the service. And when it is android:enabled="false" receives no broadcast and service does not start. This is…
Mike
  • 41
  • 1
  • 1
  • 8
0
votes
1 answer

Google Chromecast receiver doesn't play simultaneous audio

I'm developing a Chromecast application (receiver, HTML5 and Javascript) which communicates with an Android app, all is fine, but I have a problem trying to play two "sounds" at a time in the receiver. It's a kind of game where I need to play a…
Alberto Méndez
  • 1,044
  • 14
  • 31
0
votes
1 answer

Erlang can not receive message from where it begins

There are two files here. temp_converter() -> receive {convertToCelsius, {From, TempF}} -> io:format("Temp-Server2 > Converter received message from ~w~n", [From]), ConvertedTempC = (TempF-32)*5/9, From ! finished, …
Wyatt
  • 1,357
  • 5
  • 17
  • 26
0
votes
1 answer

Restarting an activity in Receiver

I'm developing an app that uses SMS to receive and store data into database. Also, I have an activity that shows the result of a query from database. Now I want, if the this special activity is open and a new message arrives some code in…
0
votes
2 answers

How to set usrp transmitting time and receiving time in GNU radio

I'm currently using two USRP X310, one for transmitting and another one for receiving. Programming is done using GNU Radio. I want to transmit a chirp signal to find the distance between both USRPs. However, before I can do it, I need to find out…
user982209
  • 183
  • 2
  • 3
  • 7
0
votes
2 answers

Start Android Service with no Activity using an intent

i created an android application with no activity. I want to start a service using a system intent like BOOT_COMPLETED. I use the following receiver:
0
votes
1 answer

How to get animal location GPS receiver information to a webserver

I am new to development using GPS so any help will be most appreciated. Project:- I am attempting to locate gps tracking hardware for a student project to locate animals. I do not want to use cell phone SMS or yearly subscriptions packages as this…
Polly
  • 1
  • 1
0
votes
0 answers

MMS Android Receiver

I can not download the data from the MMS center. Then try on http download data url that took out PduHeaders. But I returned IOException Time Out. i cannot download data from a URL GET request, but standart app dowload.(Hangouts) public class…
Chekin
  • 11
  • 2
0
votes
1 answer

IllegalArgumentException: Receiver not registered on a sub classed Receiver within a Fragment

I have a Receiver sub classed within a Fragment and a accompanying Service that sends a message to the Broadcast Receiver to show a toast indeterminately pending certain conditions. I also have a boolean value to tell me if the Receiver is running…
James Wahome
  • 588
  • 11
  • 31
0
votes
0 answers

How to set multiple alarms in Android app

now i can just add a single alarm at a time and its working perfectly. //this is my code for getting time for the alarm. public void add(View v) { String S1; e1=(EditText) findViewById(R.id.editText1); S1 = e1.getText().toString(); …
Bala u1
  • 174
  • 1
  • 2
  • 16