Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
1k views

Android: Detect another application has started playing audio

My music application constantly plays music in the background, however I'd like to be able to detect when another application starts playing audio (such as the YouTube app) so I can pause/mute/stop ...
7
votes
2answers
938 views

getting battery level at android widget

I wrote a widget for Android and I'm trying to get the battery level. I've tried using Intent batteryIntent = context.registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); but I ...
5
votes
2answers
3k views

Is it possible to write an Android broadcast receiver that detects when the phone wakes up?

I want to figure out how to detect when the phone wakes up from being in the black screen mode and write a handler for that event. Is that possible? It seems like this would be something a Broadcast ...
4
votes
2answers
50 views

How to send sms on switching off the phone in android?

I have a broadCast receiver class which listens on Switching off the phone, Now i wanted to send Sms when the phone is Switching off. Is it possible or not?
4
votes
2answers
133 views

Best Way To Receive Email Website

I am developing a website -- in the prototype stage, soon to be alpha. I will provide an email address to each account that allows the user to deposit stuff -- not a real email account, just an ...
3
votes
1answer
69 views

Am I right about the major differences between activity, service and broadcast in Android

I found Android's key components a little bit confusing, thus I have made a chart for me to remember. But I am not sure whether I am right or not. (It will be disastrous if I remember wrong things ...
3
votes
1answer
39 views

Making the app recieves Market links?

. When you are in some application, say Twitter, and you share an android application's link, I want my app to be in the list of the intent receivers. I know I need to add a receiver but what do I ...
3
votes
1answer
67 views

Getting receiver information from backtrace

From an error backtrace $!.backtrace, you can extract the method names for each step. I want to further extract the receiver of each method call. I am sure there is a way to do this because I saw this ...
3
votes
5answers
1k views

SMS receive with no notification

Sorry about my English (I'm not speaking good). I want to receive a sms in my app, but I don't want my Android to show a notification about that event. Algorithm: 1) Receive sms (it's ok) 2) If this ...
3
votes
1answer
152 views

Passing one object to many classes using Java

I need to pass an object from one class to many different classes. The aim of this is to create one method that broadcasts the object to any other classes that are listening. This is so that more ...
3
votes
4answers
4k views

Using an event receiver to update an item's 'Title' field

I have written an event receiver that is activated on the 'ItemAdded' event of a 'Pages' list. The code runs fine, but my issue is this - during the call to my Sub ItemAdded, I want to change the ...
2
votes
1answer
84 views

IllegalArgumentException: Receiver not registered

I am trying to display banner ads..on the first screen as well as on the second screen... when i try to go back to first screen through intent i am getting below error: 11-03 12:01:16.464: ...
2
votes
2answers
95 views

Is it better code practice to register a receiver in manifest or in code?

I'm writing a simple broadcast receiver. I've registered receivers in both the manifest and in the code before. For my purposes this is a simple receiver that doesn't need to do anything fancy. Is ...
2
votes
0answers
539 views

WARN/ActivityManager(5038): Permission denied: checkComponentPermission

From one application I'm (broadcast)sending an intent to a broadcastreceiver of another one. I'm getting the error: WARN/ActivityManager(5038): Permission denied: checkComponentPermission
2
votes
3answers
359 views

Starting and stopping a notification from broadcast receiver

I'm trying to start a status bar notification from a broadcast receiver and then stop it from another broadcast receiver but i'm having issues. I would like to start the notification in the status bar ...
2
votes
2answers
242 views

Django: When to customize save vs using post-save signal

I have a series of tests and cases in a database. Whenever a test is obsoleted, it gets end dated, and any sub-cases of that test should also be end dated. I see two ways to accomplish this: 1) ...
2
votes
2answers
394 views

Generate a WLAN signal in Matlab

I am looking for some tool, through which I could generate / simulate the WLAN ( IEEE 802.11 b PHY layer ) signal. My preference would be to generate in Matlab. Any useful links or idea how I can do ...
2
votes
2answers
422 views

C++ DGRAM socket get the RECEIVER address

In C++, how can I get the receiver address of the UDP packet which I have received using recvfrom. I know that it should be the same host on which I am receiving the packet, but I need to extract ...
2
votes
2answers
3k views

broadcast receiver for missed call in android

Does anyone know what is the intent for missed call. Actually i want to send sms on missed call and incomming call in my application.
1
vote
1answer
40 views

Detecting phone activity in a class

So in my Android app, I've been testing how to detect an incoming and outgoing call. I got it to work by building a class that extends a BroadcastReceiver, but in that class if I call another class it ...
1
vote
2answers
43 views

Get notified when some other application acquires wake lock

I am wondering if the following is possible in android. I want to have my application do a certain task whenever the phone get awoken. Whenever some other application acquires a wake lock to do it's ...
1
vote
0answers
33 views

start mediaplayer inside class extending PhoneStateListener

i need to start MP inside class extending PhoneStateListener. i have my mp3 file inside assets. any solution as getAssets() is not working inside.
1
vote
2answers
67 views

Broadcast to 2 running activities within an application

I have 2 activities running. Activity A is started first followed by Activity B. (ie A in stack, B in focus). I have BroadcastReceiver running on both activities. The problem is only Activity A is ...
1
vote
2answers
209 views

ViewFlipper : Receiver not registered

In my app sometimes I receive this error : java.lang.IllegalArgumentException: Receiver not registered: android.widget.ViewFlipper$1@4806a4a8 at ...
1
vote
2answers
75 views

Why won't my BroadcastReceiver call other methods?

I have a BroadcastReceiver that can successfully catch a broadcast, but if I try to call another method from it, it won't always work. Here's my setup: private class MyReceiver extends ...
1
vote
1answer
220 views

Android - Broadcast receiver crashes after changing screen orientation and do not work

I had 2 BroadcastReceivers for watching SMS status. Code: //---when the SMS has been sent--- registerReceiver(new BroadcastReceiver(){ @Override public void onReceive(Context ...
1
vote
2answers
236 views

Why wont this event receiver code work?

We are trying to create an ItemAdded event receiver that will update Created By (Author) field in a custom SharePoint list. In this custom list we have enabled Item-Lever Permissions so that userA ...
1
vote
1answer
48 views

Sampling Frequency for capturing the wlan signal in USRP2

I am working on a wlan Receiver and using USRP2 for receieving the signal. I would like to know what should be the sampling rate that the Receiever be operated on ? I was capturing the signal at ...
1
vote
1answer
260 views

Sending SMS using Intent does not add recipients on some devices

I send SMS using code below: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("smsto:" + phoneNumber)); intent.putExtra("address", phoneNumber); intent.putExtra("sms_body", ...
1
vote
1answer
178 views

Can I add multiple receivers to my Manifest?

Ok so I am making a set of widgets that will simply open up a specific app when pressed. I am fairly new at developing, so my question is if I can just keep adding a new receiver to the Manifest for ...
1
vote
1answer
255 views

How to detect MediaPlayer events of youtube from a service

I am developing an application to monitor and get statistics on youtube videos played on the phone. I need to detect events that occur during playback of video, such as the time when the video ...
1
vote
1answer
170 views

Android In App Billing: Receiver's onReceive never getting called even after a successful purchase!

I'm not sure what code to put here but I have a working in-app purchase setup in my app (in the sense that the correct amount and item is billed to my account) but the problem is the changes never ...
1
vote
2answers
540 views

priority in a broadcast receiver to receive calls

my intention is to make a Broadcast receiver that performs actions when receiving a call. Is it possible that had more priority than the automatic call reception SO?. I've tried assigning a priority ...
1
vote
1answer
94 views

How can I execute default sms app?

i register my receiver to get sms and then when receive sms, how can i execute phone's default sms app? can i use intent send action to start default sms app? please~ i need your hand~ thank you for ...
1
vote
1answer
311 views

what is the action to hear in receiver for alarm clock android

<receiver android:name=".receiver.AReceiver"> <intent-filter> <action android:name="com.android.alarmclock.ALARM_ALERT" /> <action android:name="alarm_killed" /> ...
1
vote
2answers
170 views

Using checkbox to enable receivers

I have looked for a solution to this for days and days. The examples I found don't make sence to me, probably because I am both old and new (old to life and new to android/jave). I would like to add ...
1
vote
3answers
200 views

sending and receiving on the same socket

I am implementing in C on Windows : A channel of communication between a sender and a receiver. The channel has to receive packages from sender, transfer them to the receiver and then back from ...
1
vote
1answer
209 views

Cannot have more than one INSTALL_REFFERER receiver in Android Manifest

I am using the AdMob install receiver in my Android Manifest file, e.g. <!-- AdMob Install Receiver --> <receiver android:name="com.admob.android.ads.analytics.InstallReceiver" ...
1
vote
1answer
286 views

Android Pass Intent to Activity only if activity is already active?

I have a broadcast receiver which I want to pass onto an activity but if and only if the activity is visible. I don't want to start it up unless its already visible. Is there an option for this? Or ...
1
vote
0answers
518 views

Receiver not registered exception in android?

I have created Broadcast Receiver for my app which involves bluetooth communication. That receiver gets called everytime the connection is made or lost. Then in that receiver there is a callback ...
1
vote
1answer
676 views

Problem with unregister BroadcastReceiver

in my app I've a service that register a BroadcastReceiver into onStart() method: public void onStart() { if(something....) { IntentFilter filter = new ...
1
vote
1answer
396 views

How does cross domain file (receiver) work?

So, how does it work? How come having a receiver.html can allow cross domain communication? I... just... don't understand. For example, (using Heyzap as example) <script type="text/javascript" ...
1
vote
1answer
1k views

Android Widget Click and Broadcast Receiver Not Working

The below code should describe an app where once the widget button is clicked, it sends off an intent that should be received by TestReceiver. However, in running my below code, the onReceive of ...
1
vote
0answers
129 views

How to get a HTML5 audio tag audio to come from receiver instead of speaker?

I was trying to do the following on IPhone - load a webpage on UIWebView control in my application. - The webpage has an audio tag ( in HTML5) with source of the audio file set correctly. - Webpage ...
1
vote
1answer
602 views

how to use intent from receiver android

hi ive got a working sms receiver but when i try to load another class using: Intent intent = new Intent(SMSReceiver.this, SMSNotifier.class); startActivityForResult(intent, 0); i get the ...
0
votes
2answers
17 views

Android SMS Receiver / Handler

I just want to ask if anyone knows or have a working SMS receiver / handler code for android. Because I've been searching the net for days now and I still haven't seen an updated code, most seem to ...
0
votes
1answer
26 views

Manifest Defined Broadcast Receiver for email CRUD

Looking to define a Broadcast Receiver in the Manifest so I don't have to run as a service. My goal is to check any new email addresses that are created updated, deleted. Having issues, I have tried a ...
0
votes
1answer
44 views

Refresh view when receiver(c2dm) receives new message

I have implemented an app to receive push message using c2dm framework. It shows notification when new message comes successfully. However, how to add this feature? When the receiver has new ...
0
votes
0answers
18 views

ProximityAlert management

I've a list of GeoPoint that I put on a MapView as interest point. I've added a proximity alert to all of this GeoPoint. I've implemented the onReceive method in the BroadcastReceiver and it works ...
0
votes
3answers
56 views

How to use threads which will receive same data at the same time?

I want to create console application in c# which is going to connect to local push server and will receive messages from it. I have created the application which is able to read response from push ...

1 2