Android :: Application Crashed After Either Receive Phone Call
Oct 30, 2010
After I either receive a phone call or make one, (and other undocumented interruptions) my application gets a NullPointerException when resuming my activity. Can any explain to me where it is and/or how to fix it?now, pls help me to fix this problem, how do i handle phone call or SMS received or such kind of interruptions?
View 2 Replies
Nov 17, 2009
i've registered a PhoneStateListener in BOOT_COMPLETED receiver by using following call: tm.listen(new TestCallStateListener(), PhoneStateListener. LISTEN_ CALL _STATE); If the application crashes then system automatically unregisters the PhoneStateListener. Is there any mechanism of checking if particular PhoneStateLister is registered or not? Actually i'm thinking of starting a repeating service by AlarmManager which will check if PhoneStateListener is registered or not . And if it's not registered then service will register it again. Just a backup if application crashes. Is this a good approach or there is some better mechanism to make sure that PhoneStateListener is always registered even if application crashes ?
View 2 Replies
View Related
Mar 7, 2010
In the 1.6 API, is there a way to ensure that the onStart() method of a Service is called after the service is killed due to memory pressure?
View 4 Replies
View Related
Mar 7, 2010
In the 1.6 API, is there a way to ensure that the onStart() method of a Service is called after the service is killed due to memory pressure? From the logs, it seems that the "process" that the service belongs to is restarted, but the service itself is not. I have placed a Log.d() call in the onStart() method, and this is not reached.
View 1 Replies
View Related
Mar 31, 2009
I have noticed that if my background service crashes the system will automatically restart the service after 5 seconds. This is great, but I have noticed that only the onCreate method gets called and not the onStart method. Does this mean the service is properly restarted or do I need to do something special in the onCreate method to make sure it is? I did have my initialisation logic in the onCreate method and my starting service logic in the onStart method but it looks like it will all have to be in the onCreate method.
View 2 Replies
View Related
Aug 31, 2010
How to find out line of code where application failed in Android? (without debugging just to see crash dump)
View 3 Replies
View Related
Jun 30, 2010
why is it that when i receive a phone call and i tried to answer the call by sliding the green arrow the phone freeze?
View 4 Replies
View Related
Feb 10, 2010
So this started a week or so ago. I don't receive text messages unless I'm on a phone call. So until I call or receive a phone call. I don't get any messages. Once I do call. i get like 5 messages. anyone else have this problem? Quite frustrating. Called sprint to reset network n stuff but still no resolution. They said to hard reset but I'm reluctant.
View 5 Replies
View Related
Apr 29, 2010
How can I get rid of the green android picture when I receive a phone call ? And I don't have a photo assigned to the contact.
View 6 Replies
View Related
Jan 18, 2010
I am developing one application which fetches the list of data/images from the server and shows on to the device. When I change the orientation, press Back button after doing it for 4-5 times app gets crashed. I am handling orientation change within activity itself and not setting the new view.
[Code]
View 8 Replies
View Related
Aug 20, 2010
Hi. I am looking for some advice with regards to how I receive calls on my Xperia X10i. Basically, the story goes as follows...normally when I receive a call I have to do that swipe thing to accept the call, however, at very random times instead of the swipe I get the option of pressing 'Accept Call' or 'Decline Call' which are displayed on the lower part of the screen side-by-side. Now, to be perfectly honest I actually prefer the latter option but do not know why it is so random. To be clear, I have never updated my phone since I got it and I have searched the settings but not been able to locate anything which would explain this.
View 3 Replies
View Related
May 15, 2010
I was trying out an app, I think it's called Continuous Photo and it completely crashed my phone. I can't turn it on. I plugged it into the wall to see if that would help and it made the sound that one would expect when it's charging and the home, menu, and return buttons all lit up, but not the screen. It's a brand new phone that I've only had for 4 days. Is the problem, that I tried to complete a function using the app, that I didn't have enough memory for? No matter what the reason is, how can I fix it? I'm freaking out here.
View 3 Replies
View Related
Oct 12, 2010
Don't download Red Droid! aka Red Tube! I downloaded this application and it crashed my phone. Have to get another one.
View 5 Replies
View Related
Sep 21, 2010
Ever since Froyo, I cannot text, email, and my phone crashes constantly.
View 1 Replies
View Related
Sep 3, 2010
I have built an SMS application and install it on my HTC Hero. but whenever i receive an SMS i receive 2 copies.How can I make this application as the default application to send and receive SMS.
View 1 Replies
View Related
Feb 21, 2010
I would like to know if it is possible to launch my application whenever a new entry is written to phone call log (i.e. out-going, in-coming or missed call). I wrote an application to manage the call log entries as per user preferences by listening to the publication of android.intent.action.PHONE_STATE events. My application is working fine as long as its process is running. However if the user has stopped my application with a task-killer application, then the log entries can not be managed as my app itself was not running. I need a way to make sure that my application is launched in the background if it is not already running when the android.intent.action.PHONE_STATE occurs. Or is it possible to launch my application as a service that always runs?
View 2 Replies
View Related
Jan 11, 2010
There is way to allow the application to make a phone call using startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(toDial))My question is, Is there any way to end the phone call through application, More specifically I need to try like end the call as soon as i get the call.
View 2 Replies
View Related
Oct 28, 2010
Suppose I wanted to design a cheap little app which lets you schedule fake phone calls to yourself, along similar lines as this app:
http://magictap.net/fakecalls/
I'd imagine using an AlarmManager would be suitable for this purpose, the question is how to generate a fake incoming call screen, complete with the slide to answer call option. My initial approach, the AlarmManager should launch a PendingIntent. However, I'm not sure where to go from here, in particular to get an Activity started which displays the fake call screen.
View 4 Replies
View Related
Mar 17, 2010
I have a task at sight but need some expert help: is it possible to place a phone call within an Activity without bringing up the native Phone app? I need to place a call from the app I am developing, so what I would like to do is to pass a phone number through an Activity that may or may not bring the Phone app up to screen.
View 5 Replies
View Related
Dec 3, 2009
Sometimes I keep on hitting a call out to someone and I have a freak out session and put the phone call in the background. I thought of putting this into the app section but since I believe the droid is the main athlete who needs this application. Anybody willing to put one on? Simple idea, have this kill all / single phone with a slight tap of the icon on the background.
View 4 Replies
View Related
Mar 23, 2009
I want to listen to outgoing call. Below is our manifest.xml and Listen.java. But when a outgoing call is doing, I got the following waring, and the receiver got no response. Would you like to help me out. Thank you very much.
03-23 16:05:09.227: WARN/ActivityManager(79): Permission Denial: broadcasting Intent { action=android.intent.action.NEW_OUTGOING_CALL (has extras) } from com.android.phone (pid=193, uid=1001) requires null due to receiver com.android.lianyun/com.android.lianyun.Listen import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log;
Code...
View 2 Replies
View Related
Feb 14, 2010
I just downloaded "missed call". HThe program is set for repeating alerts every 2 minutes, After I receive a missed call , how do I stop the alerts?
View 2 Replies
View Related
Jun 15, 2009
I want to develop application in which i want to listen call and play medial file so caller can listen it. Can some one tell me how can i do it ? any code snippt or link of resource.
View 7 Replies
View Related
Nov 13, 2009
I just got the droid today. It has crashed like 7 times. I will be playing around on it and it acts like it is getting overloaded and shuts off and restarts. anyone else with this problem? what could be causing this?
View 1 Replies
View Related
Sep 22, 2010
I bought my Xperia X10i a month ago and it has already started giving problem. At First, It stopped getting charge then I went to the SE service center and submitted my phone. It came back with a fix and told me that your motherboard has been replaced. After 3 days, suddenly the 3 buttons below the screen stopped working. I tried updating the software through PC companion but it use to say that your phone is up to date. Then next day morning, I was browsing internet on phone and then I turned on the music, phone got bit slowish due to multitasking and then suddenly crash and after that I was never able to turn it on again. Now my phone is again with SE service center. Don't know if again I will be getting it back with a temporary fix or what, but it's really painful as my phone is just a month and a half old and already its with sony for 15-20 days in total. I am not sure if they unit test the device before delivering or not and I don't want to keep visiting SE center again and again.
View 3 Replies
View Related
Jul 5, 2010
So the phone has been a bit quirky since the OTA, but nothing major. However, today I was on the internet and the phone totally crashed and then began to reboot. However it has been stuck in reboot mode since then, going from HTC to Verizon screens over and over. I've removed the battery twice, and let it sit, and nothing. Still stuck. It was not charging and I do not have it rooted. It just plain crashed.
View 4 Replies
View Related
Nov 14, 2010
I rang my husband on my x10 mini & when i tried to hang up i couldn't, & i cant turn the phone off, so i took out my sim card so i wouldn't be charged, but it is still saying the call is active & i now don't know what to do!!?
View 2 Replies
View Related
Jun 30, 2010
Is it possible if my application is running and that time if any incoming call arrives then i want to kill or wait that call (phone activity). any one achieve this type of work in android. i have a no idea how to do this.
View 2 Replies
View Related
Jun 15, 2010
when i'm browsing the net my friends cant ring me. is this normal? i'm sure i have seen a thread on this before but i cant find it.
View 3 Replies
View Related
Aug 8, 2010
Can HTC Desire receive video call? Any setting require?
View 4 Replies
View Related