Fixed
Status Update
Comments
bu...@gmail.com <bu...@gmail.com> #2
I have same issue, but in addition many a time, when I switch on Bluetooth, the WiFi connection drops.
bu...@gmail.com <bu...@gmail.com> #3
eb...@gmail.com <eb...@gmail.com> #4
Thanks... but that is not the same issue... I can leave wifi on all the time and it will never drop connection. Even when screen blanks out. The wifi will only drop when I turn on bluetooth.
ro...@gtempaccount.com <ro...@gtempaccount.com> #5
The issue with bluetooth killing wifi is a known Android 4.2.1 issue. Whether or not it is related to other wifi issues has yet to be determined, since the cause of the wifi bug has not been made public. I have also seen the bluetooth killing wifi bug on My Nexus 4, all I have to do is turn on my paired Plantronics headset.
And for clarity, my wifi doesn't "drop" either. But after the screen has been blanked for about a minute, it stops communicating. A simple ping test to your N4 can verify this. If you turn the screen back on you still see the wifi icon, but it will be greyed out. After a few seconds with the screen on, it will turn blue again (and ping will again reach your device).
And for clarity, my wifi doesn't "drop" either. But after the screen has been blanked for about a minute, it stops communicating. A simple ping test to your N4 can verify this. If you turn the screen back on you still see the wifi icon, but it will be greyed out. After a few seconds with the screen on, it will turn blue again (and ping will again reach your device).
eb...@gmail.com <eb...@gmail.com> #6
Yeah, I had a discussion with a level 2 Google Play support rep. They said they are aware of the issue and to please be patient for an update. I think we need to make this more publicly known so that they get on top of it...
My wifi icon is always blue (when bluetooth isn't on, that is)... even after the screen's been off for quite some time and then turn back on. Still blue...
My wifi icon is always blue (when bluetooth isn't on, that is)... even after the screen's been off for quite some time and then turn back on. Still blue...
bu...@gmail.com <bu...@gmail.com> #7
Thanks for the update. How did you get to discuss this with a level 2 rep? Did you call Google Device support and escalate?
st...@gmail.com <st...@gmail.com> #8
After a long discussion of "It must be your router..." or "It must be your bluetooth device..." or "you must have installed some app that's causing that..." or "those radios have nothing to do with each other..." I proved to the first rep that my router + bluetooth device doesn't have any problems on my Nexus 7. Then explained that I can get the same results on both Nexus 4 (dropped wifi) and Nexus 7 (perfectly working wifi) at multiple router locations - not just mine. I then proceeded to uninstall every downloadable app... still the same problem... I then reset my phone to factory settings... still the same problem... then I booted my phone in safe mode... still the same problem. She was stumped... it was clearly a Nexus 4 issue as no outside force was causing this issue.
It took all that running around to present my case to a level two. And of course... level two knew about it and said be patient...
It took all that running around to present my case to a level two. And of course... level two knew about it and said be patient...
ez...@gmail.com <ez...@gmail.com> #9
Figures. I've done essentially the same thing trying to track down the wifi sleeping problem. I've RMA'd two Nexus 4's, and the third one has the identical problem as the other two. It's about time for me to call them back again.
ez...@gmail.com <ez...@gmail.com> #10
Level one said I could do a warranty replacement, but if they don't find my issue, they would charge me full price for the new Nexus. Didn't want to risk it... Just send the update!!!
sa...@nuatransmedia.com <sa...@nuatransmedia.com> #11
Interesting! The reps gave me no problems whatever when I described the problem, said they'd RMA the phone each of the two times I called and described the problem. In a subsequent follow-up email one of the reps said they'd never heard of the problem, so I sent them my write up (above) as well as this link: http://code.google.com/p/android/issues/detail?id=40065
I told them they could read all about it there.
I told them they could read all about it there.
[Deleted User] <[Deleted User]> #12
I've got this same problem on both of my Nexus 4s and one Nexus 7.
eb...@gmail.com <eb...@gmail.com> #13
I've experienced the bluetooth bug on my Nexus 4, as well as several problems with WiFi. However, I thought I'd share a few positives about the phone: http://things-linux.blogspot.com/2013/01/the-good.html
cu...@gmail.com <cu...@gmail.com> #14
I just posted about this in issue # 40065 (Comment 422 and 445) and that has been assigned an owner.
hopefully a fix is being cooked and its here soon.
I usually take calls via bluetooth and it is posing a challenge now with constant skips when the WIFI is on. :(
hopefully a fix is being cooked and its here soon.
I usually take calls via bluetooth and it is posing a challenge now with constant skips when the WIFI is on. :(
cu...@gmail.com <cu...@gmail.com> #15
cu...@gmail.com <cu...@gmail.com> #16
I experience the exact same issue and I have submitted my bug report on Nexus 4 help page.
Description
ProgressBar bar = (ProgressBar) findById(...);
This does not work as expected:
bar.setMax(50);
bar.setProgress(20);
bar.setMax(20);
bar.setProgress(20);
Would expect a full 20/20 bar.
What I get is:
20 == bar.getMax();
20 == bar.getProgress();
__But it shows a 20/50 bar.__
The setProgress(...) seems to not trigger the update on the drawable if the same value is passed again. But it's not triggered during the setMax, too. So the update is missing. Seems like a Bug in the android ProgressBar! This took me about 8 hours now.. lol :D
This works fine:
bar.setMax(50);
bar.setProgress(20);
bar.setProgress(0); // <--
bar.setMax(20);
bar.setProgress(20);
I'm using API Level 7.