Hello,
Since it seems like no one has ever asked this question before I've decided to post about it.
On the Droid when you dial a phone number and put the phone up to your ear it locks the phone's screen. Then if you are dealing with a PBX or menu system on the phone that requires you to press a certain option and you move the phone away from your ear to tap the dialer, the screen automatically auto-unlocks. This is, by far, the best feature I have seen in a phone to-date.
Where do I get a dialer that supports that feature (it obviously uses the accelerometer)? Somehow I doubt you can just rip the APK out of the Droid image and have it work on a G1. Or does that feature just not work on the G1 for some reason?
Any replies are appreciated.
--Nickhttp://forum.xda-developers.com/showthread.php?p=6419439#post6419439
nbetcher said:
Hello,
Since it seems like no one has ever asked this question before I've decided to post about it.
On the Droid when you dial a phone number and put the phone up to your ear it locks the phone's screen. Then if you are dealing with a PBX or menu system on the phone that requires you to press a certain option and you move the phone away from your ear to tap the dialer, the screen automatically auto-unlocks. This is, by far, the best feature I have seen in a phone to-date.
Where do I get a dialer that supports that feature (it obviously uses the accelerometer)? Somehow I doubt you can just rip the APK out of the Droid image and have it work on a G1. Or does that feature just not work on the G1 for some reason?
Any replies are appreciated.
--Nick
Click to expand...
Click to collapse
The Droid uses a proximity sensor to tell when it goes up to your ear:
pocketnow.com said:
The Motorola Droid also has a proximity sensor so that the screen shuts off when you hold the phone close to your face. This helps to conserve battery life while at the same time prevent accidental screen input if your cheeks press upon the screen.
Click to expand...
Click to collapse
Not sure how you would do the same thing with the Accel.
That feature actually uses the proximity sensor, which the G1 unfortunately lacks.
jshealton said:
The Droid uses a proximity sensor to tell when it goes up to your ear:
Click to expand...
Click to collapse
Oh. That makes sense.
jshealton said:
Not sure how you would do the same thing with the Accel.
Click to expand...
Click to collapse
Not sure why it would be so hard. Accel can tell how it's positioned and the position next to your ear is completely different from that of holding your phone in front of you. It would just require some evaluation and data recording of degrees and ranges.
nbetcher said:
Oh. That makes sense.
Not sure why it would be so hard. Accel can tell how it's positioned and the position next to your ear is completely different from that of holding your phone in front of you. It would just require some evaluation and data recording of degrees and ranges.
Click to expand...
Click to collapse
Not sure about that. If I remember correctly the accell only sees if the phone is in landscape or portrait orientation, and when you are talking on the phone it is almost straight up and down. Not sideways. Will venture to find an answer.
Edit: You almost have to have the phone on its side for the accel to see that you have moved your phone. Don't know about you but when I talk on the phone it is almost up and down.
jshealton said:
Not sure about that. If I remember correctly the accellerometor only sees if the phone is in landscape or portrait orientation, and when you are talking on the phone it is almost straight up and down. Not sideways. Will venture to find an answer.
Click to expand...
Click to collapse
That certainly can't be since many games, namely Armageddon Squadron (flying game) use the X and Y axis on the phone (roll vs pitch). Also think of rolling objects in games that you have to "steer."
nbetcher said:
That certainly can't be since many games, namely Armageddon Squadron (flying game) use the X and Y axis on the phone (roll vs pitch). Also think of rolling objects in games that you have to "steer."
Click to expand...
Click to collapse
That may be true. I don't have any games on my phone that use the accel. I can only go by logcat durring screen orientation. I am sure you can now, the only problem is at what amout of tilt does the screen lock. And you would have to tie it in to when there is a call connected. Would hate for my sreen to auto lock when I am laying in bed playing with my phone.
jshealton said:
And you would have to tie it in to when there is a call connected. Would hate for my sreen to auto lock when I am laying in bed playing with my phone.
Click to expand...
Click to collapse
Well, of course it's connected to the dialer - that's its only purpose. If the dialer doesn't have foreground then it won't auto-lock.
If developing for Android wasn't such a pain in the ass (compared to C++) and I knew more Java classes/methods then I'd probably just implement this myself. I'll probably get the myTouch Slide soon enough though.
We wouldn't be able to so much measure the exact position to do this but a good shake-like-hell-to-unlock-dialpad event might be possible... If I (or someone) can find some code for a dialer, I'd be happy to take a stab at making it "native..." I know just enough Java/Android to cause some trouble, so it could only be good ;-) If not the dialer, then an app could be started as a service, with an intent to snag the call, and listen for a good jostling. I wonder what this would do to the battery/performance and how often I would have to make it poll the sensor? Hmm....
I'll see if I can poke around and find ANYTHING. Haven't googlified anything yet... I do need something constructive to add to my workload.
And yes, the accelerometer measures force applied to the X, Y and Z axis. you can technically program it to sense when you've dropped (or are dropping) the phone.
boredpcguy said:
We wouldn't be able to so much measure the exact position to do this but a good shake-like-hell-to-unlock-dialpad event might be possible... If I (or someone) can find some code for a dialer, I'd be happy to take a stab at making it "native..." I know just enough Java/Android to cause some trouble, so it could only be good ;-) If not the dialer, then an app could be started as a service, with an intent to snag the call, and listen for a good jostling. I wonder what this would do to the battery/performance and how often I would have to make it poll the sensor? Hmm....
I'll see if I can poke around and find ANYTHING. Haven't googlified anything yet... I do need something constructive to add to my workload.
And yes, the accelerometer measures force applied to the X, Y and Z axis. you can technically program it to sense when you've dropped (or are dropping) the phone.
Click to expand...
Click to collapse
try looking here.
http://github.com/cyanogen/android_packages_apps_Phone
edit: It should be possible, since it looks like a feature to "turn over to silence" has been implemented.
boredpcguy said:
We wouldn't be able to so much measure the exact position to do this but a good shake-like-hell-to-unlock-dialpad event might be possible...
Click to expand...
Click to collapse
I'm not sure if shaking my phone is really much better than tapping the screen twice - both require similar times for completion.
boredpcguy said:
If I (or someone) can find some code for a dialer, I'd be happy to take a stab at making it "native..."
Click to expand...
Click to collapse
Here's a tar.gz of the source-code that was released with the Droid https://android.git.kernel.org/?p=p...9af2e10e23c7c21f22abec5f3d7fa05d6406a2;sf=tgz
Not sure if it's still out and compatible with the newest builds, but the app Shake Awake did this quite some time ago.
Hairybroness said:
Not sure if it's still out and compatible with the newest builds, but the app Shake Awake did this quite some time ago.
Click to expand...
Click to collapse
I used to use this on android 1.1. iirc it stopped working on cupcake, and I haven't checked on it since then.
I don't think this would work, because what if you're laying down with the phone? I'm pretty sure it would mess up with the Accel. I'm not too much into this, but when playing a game like teeter for example, the side of your phone has to be horizontal with..the horizon (correct me if I'm wrong)
Dialer wake-up w/o real sensor
Shake Awake never worked too well for me.
I have always wondered in the back of my non-programmer brain if one who was really good could implement a sonar/feedback type code whereby when the phone was close to an ear, the amount of feedback from the earpiece to the mouthpiece was quite low, but drawn away from the ear increased just enough for the phone to pass through to the code through an intent (is there anything like a feedback intent? I bet Meltus would know!), which would issue the commands to unlock and wake-up.
More ideally would be a program which got the earpiece to put out a search tone up around 20 kHz, which would be analyzed by the mouthpiece. Sound present = user has moved the phone away from the ear, wake up and unlock to touchpad, sound muffled or totally gone = user is still using the earpiece, don't unlock.
BTW, all 2.1 eclair ROMs I've used in the past 3 months have a setting for a substantial improvement to screen awake times during calls.
Related
I don't know if this is just an issue with me or if others are experiencing the same issue.
for some reason my proximity sensor is VERY sensitive... for example if I move my face just 1/2 and inch from the screen my screen turns on and I either press "Mute" or "Speaker" with my cheek OR i hang up on the person I'm calling when I place the phone back against my face.
This happens about 50% of the time... so every other call I make has this issue.
I don't know if I can change the sensitivity or the length of time before the screen turns on.
I'm coming form the Eris/D1/DX/Fascinate and I never had these issues with my older phones.
Any advice or Steps to fix this would be greatly appreciated.
Plz Advise
Happens to me too, but I don't manage to hang up or mute the calls normally. I'd love a solution as well!
Magicadder said:
I don't know if this is just an issue with me or if others are experiencing the same issue.
for some reason my proximity sensor is VERY sensitive... for example if I move my face just 1/2 and inch from the screen my screen turns on and I either press "Mute" or "Speaker" with my cheek OR i hang up on the person I'm calling when I place the phone back against my face.
This happens about 50% of the time... so every other call I make has this issue.
I don't know if I can change the sensitivity or the length of time before the screen turns on.
I'm coming form the Eris/D1/DX/Fascinate and I never had these issues with my older phones.
Any advice or Steps to fix this would be greatly appreciated.
Plz Advise
Click to expand...
Click to collapse
Which kernel / rom are you using? I have heard that some kernels have caused proximity sensor issues but I'm not sure if the issue others have experienced is the same as yours. I'd try a battery pull first, if that doesn't help try a different kernel and see if that fixes it. If the issue still persists, it could be a hardware issue and you might have to get the phone exchanged under the manufacturers warranty.
Sent from my Thunderbolt using Tapatalk
m00nshake said:
Which kernel / rom are you using? I have heard that some kernels have caused proximity sensor issues but I'm not sure if the issue others have experienced is the same as yours. I'd try a battery pull first, if that doesn't help try a different kernel and see if that fixes it. If the issue still persists, it could be a hardware issue and you might have to get the phone exchanged under the manufacturers warranty.
Sent from my Thunderbolt using Tapatalk
Click to expand...
Click to collapse
I'm using Stock firmware with bamf 4.3a Kernal
I've reset this thing too many times... installing different roms and such.. but I can verify that this is happening to another phone. My wife's phone does exactly the same thing. we purchased out tbolts on launch day ( if that helps )
The proximity sensor is located were the Verizon V is at
In between the big V is the sensor. Very hard to see go under a light a tilt the like you would if you want to find scratchs on your phone it really is between the V or I'm you can not find it. Make a phone call and get your index or any finger. And again make sure your under light and make the shadow of your finger go on top of the proximity sensor. Mine is very sensitive also.
-Monky_1
-Monky_1
My proximity sensor seems pretty touchy, as well.
I initially thought it to be a problem with a particular version of Adrynalyne's kernel, but I'm not so sure anymore. Adrynalyne also said that a kernel shouldn't affect the proximity performance -- that HTC puts these setting or whatever in the framework (what that means exactly, I'm not sure).
Anyway, I haven't done any exhaustive testing or anything, but I did notice one thing that seems to help keep my screen off is to have the thing pointed straight down while on the phone. My natural inclination is to have it along my jaw line, with the end pointed at my mouth. But the proximity sensor is to the left-of-center on the phone. Angling it moves the sensor away from your ear a bit. Assuming you've got it up to your right ear, that is.
I'd still welcome any other points folks might have about this.
calbruc said:
My proximity sensor seems pretty touchy, as well.
I initially thought it to be a problem with a particular version of Adrynalyne's kernel, but I'm not so sure anymore. Adrynalyne also said that a kernel shouldn't affect the proximity performance -- that HTC puts these setting or whatever in the framework (what that means exactly, I'm not sure).
Anyway, I haven't done any exhaustive testing or anything, but I did notice one thing that seems to help keep my screen off is to have the thing pointed straight down while on the phone. My natural inclination is to have it along my jaw line, with the end pointed at my mouth. But the proximity sensor is to the left-of-center on the phone. Angling it moves the sensor away from your ear a bit. Assuming you've got it up to your right ear, that is.
I'd still welcome any other points folks might have about this.
Click to expand...
Click to collapse
This is exactly what's happening. It's nice to see that I'm not the only one having this issue... even tho I'm sure it's annoying for everybody. Hopefully we'll be able to get some relief from this.
http://market.android.com/details?id=i4nc4mp.myLock.phone
This app keeps me from smashing my Droids.
this is not a signature I type it in every time maybe sent from my phone or my computer
rizzomegav said:
http://market.android.com/details?id=i4nc4mp.myLock.phone
This app keeps me from smashing my Droids.
this is not a signature I type it in every time maybe sent from my phone or my computer
Click to expand...
Click to collapse
Would this work even tho the Thunderbolt has no physical Trackball or Camera Button?
Not to discredit this app Kudos to the Dev who wrote it, but it seems like a work around and not an actual Fix.
But I'll try it out and reply back with some feedback
Here's what I do and it works for me most of the time. When making or receiving a call, once the call is 'connected' I quickly hit the 'home' button so I'm no longer on the 'phone screen' & then the power button which darkens & locks the screen. Even if the proximity sensor allows the screen to light up, the lockscreen is still there and prevents me from muting or hanging up on the other person. It's not a perfect solution since my jaw has managed to unlock the screen & randomly open apps occasionally but it beats hanging up on someone every 5 seconds.
Sent from my NookColor using Tapatalk
I'll just throw my hat in that I am experiencing the same issues of muting/hanging up on people. I don't recall having the issue on the stock ROM, but have really noticed it since I've been on BAMF 1.5 with Adrynalyn's 4.4.2 kernal included with BAMF 1.5.
I was running 4.4.2 with the stock ROM before BAMF 1.5 and don't recall having proximity sensor issues. Who knows?
Edit: Anybody think that screen protectors are causing interference in any way? I have an Invisible Shield that I've had since shortly after launch date.
gatorguy said:
I'll just throw my hat in that I am experiencing the same issues of muting/hanging up on people. I don't recall having the issue on the stock ROM, but have really noticed it since I've been on BAMF 1.5 with Adrynalyn's 4.4.2 kernal included with BAMF 1.5.
I was running 4.4.2 with the stock ROM before BAMF 1.5 and don't recall having proximity sensor issues. Who knows?
Edit: Anybody think that screen protectors are causing interference in any way? I have an Invisible Shield that I've had since shortly after launch date.
Click to expand...
Click to collapse
BAMF 1.5 is based on the new leak, which includes a fix for the proximity sensor. If the rom you are running isn't based on the recent leak for our phones, then you don't have the fix, and will most likely have problems with it.
Check this thread out at droid forums! It fixed my "problem" with the proximity sensor. Simply blow out the sensor with air. Apparently dust gets in there and jacks it all up. I can confirm big time results with this method.
http://www.droidforums.net/forum/thunderbolt-tech-support/142050-thunderbolt-proximity-sensor-issue.html
Edit: All those kernel switches and setcpu tweaks over pocket lint!!! Damnitman!
Magicadder said:
Would this work even tho the Thunderbolt has no physical Trackball or Camera Button?
Not to discredit this app Kudos to the Dev who wrote it, but it seems like a work around and not an actual Fix.
But I'll try it out and reply back with some feedback
Click to expand...
Click to collapse
Well the fix is only to hold the phone correctly unfortunately. My gf has no problem using either phone (hers or mine) but if I touch them its muted hang up bam.
One of my coworkers has the same problem as me another dosent. Its absolutely user errorish IMO.
It works with my thunder bolt sort of the home key still works. I don't mind it, moreso than buggered calls.
this is not a signature I type it in every time maybe sent from my phone or my computer
gatorguy said:
I'll just throw my hat in that I am experiencing the same issues of muting/hanging up on people. I don't recall having the issue on the stock ROM, but have really noticed it since I've been on BAMF 1.5 with Adrynalyn's 4.4.2 kernal included with BAMF 1.5.
I was running 4.4.2 with the stock ROM before BAMF 1.5 and don't recall having proximity sensor issues. Who knows?
Edit: Anybody think that screen protectors are causing interference in any way? I have an Invisible Shield that I've had since shortly after launch date.
Click to expand...
Click to collapse
A screen protector was an issues for me. The first one I put on did not fit perfectly, so the top of the protector cut directly threw the center of the sensor and collected dust and gave me some issues. The second one i used was applied from the top down to not obstruct the sensor. Solved my problem.
My phone sensor will black out when I am on a call and the phone is against my face, but when I pull the phone away the screen won't come back up for some reason..
I find that it seems to reflect off the arm of my glasses, which is kinda glossy like. When the IR LED reflects back at it, it seems to assume infinite distance. Same thing happened on my Droid.
There was also a case that lacked the cutout for the proximity sensor on the Droid... screen would never turn off because it reflected the IR.
I'm glad to see I'm not the only one with this problem. It's been happening to me for a few weeks now. I've run the majority of available ROMs and kernels (pre- and post- radio update) in multiple combinations so, I believe its safe to say they are not to blame.
I'm not using a screen protector so, that can't be to blame. And I don't have any scratches on my screen either. I'm curious about this dust theory though. It may be the best one I've heard yet. Has anyone else put the air hose to their Thunderbolt yet? I think I'm gonna give it a go asap. But, in the meantime, I'd love to hear whether anyone else has had positive results. If not, I fear I may have to move on to the glasses theory. I really hope it isn't that one though. I don't want to choose between having my Thunderbolt or my sight!
Mine still does it and I'm using the leak , so I don't think there is a fix in it. If so it doesn't work. Locking the screen seems like a pain but that's the best bet for now.
Sent from my ADR6400L using XDA Premium App
dzigns said:
Here's what I do and it works for me most of the time. When making or receiving a call, once the call is 'connected' I quickly hit the 'home' button so I'm no longer on the 'phone screen' & then the power button which darkens & locks the screen. Even if the proximity sensor allows the screen to light up, the lockscreen is still there and prevents me from muting or hanging up on the other person. It's not a perfect solution since my jaw has managed to unlock the screen & randomly open apps occasionally but it beats hanging up on someone every 5 seconds.
Sent from my NookColor using Tapatalk
Click to expand...
Click to collapse
After trying many ways to work around this problem with the proximity sensor I have found that this is actually works the best .... And I can't thank you enough..... I've grown used to this method and so far its flawless.
Thank you again
Sent from my ADR6400L using XDA App
I'm rather near sighted so unless I duct tape the alarm clock to my head I have no chance in hell to actually see the numbers displayed on it at night without contacts or glasses. I've been looking around for app that does one simple thing: tell me the time when i say "time" (or something similar).
My search so far has come up mostly short. I found an app that tells me the time when I shake, touch, or wave my hand over the device. There are also half a million bad Siri knockoffs that will tell me the time if I push a button. However what I really want is an app that monitors audio the entire night and doesn't need to be prodded in any way to notice me speaking to it.
There has to be something out there that can do this. I mean, the built in voice thing responds to "hi galaxy" which could in theory work if it would just understand when I ask it for the time. There are also sleep recorders and such apps that obviously don't mind monitoring audio all night long, as long as you plug it in so power isn't an issue.
Does anyone have any ideas for such an app?
EDIT: If I'm to be very feature-greedy I also wouldn't mind if it turned on the LED when I say "lights" or something like that, but I imagine that's more than just a little bit unlikly to exist
EDIT2: Forgot I was in a general part of the forum, so just to be clear, will be using this on a galaxy s ii or galaxy tab 7.0 plus
The device doesn't really matter, such app should run on any device.
I like the idea!
I will give it a shot after my exam on thursday, but no promises , already have some cool ideas .
You should be aware that this is not battery efficient at all and if your phone is not connected to a charger it might run empty during the night.
Dark3n said:
You should be aware that this is not battery efficient at all and if your phone is not connected to a charger it might run empty during the night.
Click to expand...
Click to collapse
Of course, as I said that's what sleep talk monitors require too.
I did actually find something...on my iPad. There are a couple of apps like that on iOS. I ended up with one where you simply clap to hear the time. Hasn't been updated in ages but still works. There's another one that you actually say "time" to but I think you need to say its name to wake it up first, so didn't even try that one.
Would definitely prefer to have it on Android though, so would be awesome f you got something working
EDIT: decided to buy the other app for iOS just to make a video as a reference:
http://www.youtube.com/watch?v=uXgS0aW10v8
Seems that development simply stopped on that one. Not been updated in ages. Having to say "hello kei" every time is indeed annoying
Spent my first night with the clap activated clock on the iPad. Wow, this truly makes a world of difference to someone like me who's practically blind without glasses or contacts. Ended up waking up a few times during the night, especially close to the time to get up, so being able to get the time without fumbling around for glasses and actually waking up in the process literally made it easier to sleep too
There really should be a pinned thread for utter disappointed features and/or people.
I am not returning my new SW2. Its too cool to have the lamest, inept and funtion-killing GUI cause me to give up. ** But I bought a Pebble watch the same day because (the SW2n currently):
- can not function as a watch. It does but it goes to sleep VERY fast. WAY too fast. This is completely unacceptable. If I want to drain my f*ing watch and be able to read it all day, I should be able to!!! Put a warning on the settings area.. like: WILL DRAIN BATTERY VERY FAST or something...
- Can not finish reading my incoming sms. Maybe you dont know the girl I am dating but she WRITES A LOT... and this may not be normal amounts ... I really mean a lot. And SONY clearly has NO IDEA about this.
- AND continuing from the above point, it goes back to the f*ing CLOCK in sleep mode. SHOULD dim and remain on my screen until I SAY OTHERWISE. NOW I have to press the power button and NOT make it power off buy accident (another STUPID DESIGN) and make it activate, press the home button and then the stupid function messaging button. NO LOGIC FLOW HERE. I have to read 5 or 6 TXTs by now.
- CAN NOT read the messages in order without going BACK and opening the messaging app again. At least that seems to be what I had to do. I might have missed proper procedure here but if that is true, shame on SONY for lacking a more intuitive operation.
The Poweramp app is cool when it works. It should STAY active. I DONT CARE about anyone else or what slogan SONY wants to claim about battery life. I want FUNCTION my f*ing way. I use Poweramp all the time. But it is not able to stay on my watch, active? Total shame.
The ONLY app I kept on my watch is the custom watch faces. It allwos me to keep the display on until the dumbwatch, overthinking watch disconnects from my RazrMaxx/4.4 Dhacker29 ROM.
So in conclusion, This watch completely fails at being a watch. Fails at running apps because it times out WAY TOO FAST. Fails at every possible area other than fitting well.
Maybe your accelerometer is faulty. It should not timeout when on hand, actually it dims and always shows time.
Sent from my SM-N9005 using Tapatalk
jmaciak said:
Maybe your accelerometer is faulty. It should not timeout when on hand, actually it dims and always shows time.
Sent from my SM-N9005 using Tapatalk
Click to expand...
Click to collapse
I hate to be the guy to say it, but is the OP trolling us?
I have the smartwatch 2, just got it yesterday, and what the OP is saying makes no sense.
deitiphobia said:
I hate to be the guy to say it, but is the OP trolling us?
I have the smartwatch 2, just got it yesterday, and what the OP is saying makes no sense.
Click to expand...
Click to collapse
Well it can timeout and go totally blank ... try it, put them on the table and do not move the watch/table and it will dim and then go completely blank after a while, because the accelerometer sees it's not on the hand. So if OP's accelerometer is faulty, it might behave this way ...
jmaciak said:
Well it can timeout and go totally blank ... try it, put them on the table and do not move the watch/table and it will dim and then go completely blank after a while, because the accelerometer sees it's not on the hand. So if OP's accelerometer is faulty, it might behave this way ...
Click to expand...
Click to collapse
I am not a troll. At least I am not trying to be a troll. I do feel slightly underwhelmed buy my experience so far.
And maybe my accelerometer needs checking? If it is supposed to remain on (the screen) for more than 5 seconds when I am wearing it and trying to read something, then yes, something is wrong. Maybe the watch doesnt know when it is on a troll arm?
deitiphobia said:
I hate to be the guy to say it, but is the OP trolling us?
I have the smartwatch 2, just got it yesterday, and what the OP is saying makes no sense.
Click to expand...
Click to collapse
Hello,
What he is saying actually makes perfect sense, especially on this forum - we are not the average, marketing-targeted user and we like to use our devices any way we please, without being limited by design hickups. And we are more sensitive to design flaws and marketing bs than the average consumer.
Sony missed and even lied about basic features and is not allowing, at least so far, anyone to tweak with this product's FW.
In my experience the watch proved very useful ONLY IF YOU ARE NOT RELYING SOLELY ON IT for most of your work - i, for one, would not like to read my correspondence on such a tiny screen and prefer to use the phone instead - but it would sure be nice to know that I CAN use the watch if i wanted to.
Fortunately, while driving a motorcycle, for example, getting a hint of the message content usually suffices for me to determine if i need to pullover and get my phone out, provided i get to see the screen before it times-out, which is another awkwardly missing basic function.
I will, however, hold on to the SW2 for now in hopes that Sony will straighten things the way they should.
Sent from my LT25i using Tapatalk
i agree fully with the OP as well
if i didn't know better, i would suggest posting your opinions on talk sonymobile, but as i already did that and got NO reply from Sony, i guess it would be just a waiste of time
that's my biggest problem with Sony right now: no communication
(although i must admit most manufacturers suck at communicating with their customers, try finding out when the Butterfly s is getting 4.3/4.4, not a chance)
I actually agree with the OP, there are some features that could be included in the settings menu like timeout duration or stopping the watch default to the watch screen every time it goes into standbye especially useful if travelling and using features like poweramp - you need 3x button presses to bring the poweramp screen back on and if you have a messaging app open (reading messages) it should prevent the watch from sleeping
and how fecking hard is it to develop a few watch face designs with different colours etc
TBH I think Sony are in the process of designing a totally new Smartwatch for release in early 2014 and have completely dropped the ball with this one
well, there was an update today, so i guess they didn't drop it completely
update looked good at first, but disappointing anyway
-only 1 extra watch face that's usable, i still want the abilty to design/choose my own watch face
-the option to use the light sensor for brightness is nice, but i'm glad it's optional, don't like it
-music app update totally messed it up (used to work for me)
-camera app update didn't do anything for me, still does nothing
-still no selectable timeout, huge issue for me
---------- Post added at 06:47 PM ---------- Previous post was at 06:36 PM ----------
Find It for SmartWatch by AQ i purchased also doesn't work anymore
argh, their own Find Phone Smart Extension ALSO doesn't work anymore!
JarlSX said:
their own Find Phone Smart Extension ALSO doesn't work anymore!
Click to expand...
Click to collapse
AFAIK I suspect that problems might occur pairing the SW2 with a non-Sony smartphone.
But please let's keep the discussion in one place only, so we can better compare these findings:
http://forum.xda-developers.com/showthread.php?t=2554874
i think i know why the watch can't dim while still displaying an app
those apps don't really run on the watch, they're just displaying what's happening on the phone (that's where the app is installed)
so for a watch-app to work, the watch is constantly communicating with the phone
such a connection will probably drain the watch very quickly
only the watch part can run independently, so that's why it always goes back to that screen, to save power
this is of course just what i think
FWIW, the screen on time can be controlled by the app. I use and app called IPBike for cycling which runs on the phone. This app allows you to use the watch as a head unit on the bars. It has an option to keep the watch screen on for the entire ride.
jmaciak said:
Well it can timeout and go totally blank ... try it, put them on the table and do not move the watch/table and it will dim and then go completely blank after a while, because the accelerometer sees it's not on the hand. So if OP's accelerometer is faulty, it might behave this way ...
Click to expand...
Click to collapse
Should it really go totally blank/black? Mine is only dimmed out and showing clock face all the time, but really dimmy. And it is on the table...
Oh it does, took some time, longer than i expected...
Sent from my GT-N8000 using Tapatalk 4
Hey together. I have been using the Mix3 for a few month now. The black 265GB variant, China version with international Software.
But I got to say that there are a few problems I wasn't able to solve. Maybe you can!
So here is the List
Love
Screen ratio
MIUI
The overall Look. Gave it to a friend so he can call someone... Damn this phone looks good!
Position of Volume-rocker and Powerbutton
Wireless-charging
Not that good or worse
Thickness
The battery lasts barely a day (medium use)
The AI button... I hit this one too often by accident
No pocketdetection. The screen activates too often by accident (while calling, in the pocket or just picking up)
While calling you got to position the speaker very near to your ear, because if you move it a bit you can't understand the one on the other side anymore
inconsitent strength of the magnetic slider (sometimes it moves very hardly and other times too easy)
connection delays with bluetooth devices. If you did not connect a device in the last few days you got to manually connect the device (click on it in bluetooth settings)
If you got solutions for my concerns you can maybe safe it from getting abandoned or beeing forwarded to my brother
agree on AI button - hate it! especially in phone case it gets triggered too often just holding the phone
any way to mute that button or change it to another usage? I think I can only deactivate the google assistant itself, but it keeps reacting starting it up and asking to enable the assistant again
steffenmix3 said:
agree on AI button - hate it! especially in phone case it gets triggered too often just holding the phone
any way to mute that button or change it to another usage? I think I can only deactivate the google assistant itself, but it keeps reacting starting it up and asking to enable the assistant again
Click to expand...
Click to collapse
There is a magisk module to remapped the button
dondrexer said:
Hey together. I have been using the Mix3 for a few month now. The black 265GB variant, China version with international Software.
But I got to say that there are a few problems I wasn't able to solve. Maybe you can!
So here is the List
Love
Screen ratio
MIUI
The overall Look. Gave it to a friend so he can call someone... Damn this phone looks good!
Position of Volume-rocker and Powerbutton
Wireless-charging
Not that good or worse
Thickness
The battery lasts barely a day (medium use)
The AI button... I hit this one too often by accident
No pocketdetection. The screen activates too often by accident (while calling, in the pocket or just picking up)
While calling you got to position the speaker very near to your ear, because if you move it a bit you can't understand the one on the other side anymore
inconsitent strength of the magnetic slider (sometimes it moves very hardly and other times too easy)
connection delays with bluetooth devices. If you did not connect a device in the last few days you got to manually connect the device (click on it in bluetooth settings)
If you got solutions for my concerns you can maybe safe it from getting abandoned or beeing forwarded to my brother
Click to expand...
Click to collapse
Totally agree with the AI button thing, I click it ALL the time by accident it's super annoying. There is a thread on XDA for changing the functionality and a Magisk module as well. The Magisk module is for the Mi 9 but may work for the Mix 3 as well, not entirely sure on that. I haven't experienced the Bluetooth issues though, and I have the global hardware (6 GB RAM 128 GB ROM). My Bluetooth works flawlessly. The slider does feel a bit inconsistent, not sure how/why but I rarely use the selfie camera anyway so it's not a big deal for me. I feel like the battery is pretty average for a smartphone, nothing great but not bad. I can usually get through a day with it and its better than my V30 so that's a plus. Hope you're still enjoying the phone overall!
---------- Post added at 09:52 AM ---------- Previous post was at 09:51 AM ----------
raven213 said:
There is a magisk module to remapped the button
Click to expand...
Click to collapse
Are you talking about the one for the Mi 9? It works fine for the Mix 3 too?
Rockmadeofrock said:
Totally agree with the AI button thing, I click it ALL the time by accident it's super annoying. I've been looking for a way to disable it entirely but haven't found anything I understand yet. I'll keep you updated on that. I haven't experienced the Bluetooth issues though, and I have the global hardware (6 GB RAM 128 GB ROM). My Bluetooth works flawlessly. The slider does feel a bit inconsistent, not sure how/why but I rarely use the selfie camera anyway so it's not a big deal for me. I feel like the battery is pretty average for a smartphone, nothing great but not bad. I can usually get through a day with it and its better than my V30 so that's a plus. Hope you're still enjoying the phone overall!
---------- Post added at 09:52 AM ---------- Previous post was at 09:51 AM ----------
Are you talking about the one for the Mi 9? It works fine for the Mix 3 too?
Click to expand...
Click to collapse
Yeah it should be check on magisk it's there it's called Xiaomi AI remapper
raven213 said:
Yeah it should be check on magisk it's there it's called Xiaomi AI remapper
Click to expand...
Click to collapse
Awesome thanks!
Rockmadeofrock said:
Awesome thanks!
Click to expand...
Click to collapse
No problem
Personally, I don't have any issues with the thickness and actually, it makes it easier to hold with my large hands. I have had thinner devices, like the LG V30, S9 Plus, and Note 9, but they just feel like toys by comparison.
The AI button isn't an issue for me. I am not rooted but I have used ADB to uninstall Xiaomi's when I was using the Chinese ROM my device came with and used ADB to remove Google Assistant when I installed the Global Stable ROM. I have no issues finishing a day of very heavy use with about 10% battery left using both SIM slots simultaneously. On average, I finish my day with about 30% left, but I do travel often, so those days, I spend more time watching YouTube on planes and texting more than anything else. I have used ADB though to remove a lot of bloat that can run and waste battery life.
I don't use Bluetooth devices at all so i can't really comment on how well or how well it doesn't work on the Mi MIX 3. However, many devices do experience Bluetooth issues for various reasons. Firmware updates for cars or the Bluetooth in the device itself is usually the more common answer. No manufacturer is exempt from these issues.
I definitely agree with the earpiece. Because it is technically set in the bottom part of the device, it has to send sound straight through the other to get to your ear. If your ear is right over the hole where this comes through, it's fine, but it does take some getting used to and makes it hard to rest the phone on your shoulder and still talk on it.
I haven't had any issues with the slider. From the day I got my device, the slider has been stiff and robust. I often use it just fiddling around as well. The magnets pull and push feel just as strong as the day I opened the box. I also haven't noticed the screen being on when it is in my pocket and have never had my screen on when removing it from my pocket. I do have double tap to wake and lift to turn on the screen disabled though. Perhaps it is one or a combination of both of those settings causing that issue for you.
Trusted place
jcsww said:
Personally, I don't have any issues with the thickness and actually, it makes it easier to hold with my large hands. I have had thinner devices, like the LG V30, S9 Plus, and Note 9, but they just feel like toys by comparison.
The AI button isn't an issue for me. I am not rooted but I have used ADB to uninstall Xiaomi's when I was using the Chinese ROM my device came with and used ADB to remove Google Assistant when I installed the Global Stable ROM. I have no issues finishing a day of very heavy use with about 10% battery left using both SIM slots simultaneously. On average, I finish my day with about 30% left, but I do travel often, so those days, I spend more time watching YouTube on planes and texting more than anything else. I have used ADB though to remove a lot of bloat that can run and waste battery life.
I don't use Bluetooth devices at all so i can't really comment on how well or how well it doesn't work on the Mi MIX 3. However, many devices do experience Bluetooth issues for various reasons. Firmware updates for cars or the Bluetooth in the device itself is usually the more common answer. No manufacturer is exempt from these issues.
I definitely agree with the earpiece. Because it is technically set in the bottom part of the device, it has to send sound straight through the other to get to your ear. If your ear is right over the hole where this comes through, it's fine, but it does take some getting used to and makes it hard to rest the phone on your shoulder and still talk on it.
I haven't had any issues with the slider. From the day I got my device, the slider has been stiff and robust. I often use it just fiddling around as well. The magnets pull and push feel just as strong as the day I opened the box. I also haven't noticed the screen being on when it is in my pocket and have never had my screen on when removing it from my pocket. I do have double tap to wake and lift to turn on the screen disabled though. Perhaps it is one or a combination of both of those settings causing that issue for you.
Click to expand...
Click to collapse
I will add one more issue regarding MIUI - can't add trusted device (snartwatch) and trusted places
georgito said:
I will add one more issue regarding MIUI - can't add trusted device (snartwatch) and trusted places
Click to expand...
Click to collapse
I have some issues with MIUI as well. Would they stop me from buying another Xiaomi device? No.
Tue stock apps suck! The default Messaging app doesn't support rotation and doesn't display group texts under those in that. It splits tue group texts under their individual threads. Changing Messaging apps leaves me with notification sounds that can't be changed because Xiaomi developers are stuck in the years of KitKat with how their sounds work!
The change to not being able to lock the bootloader when switching ROM's is probably the worst I can think of. I get the reasoning behind the change but I bought thebChinese model as the Chinese model because I wanted more RAM.
MIUI settings are also lacking when it comes to restricting roaming from one SIM but not the other.
My T-Mobile plan works in multiple countries and I want that to roam when outside of the US. My Telus SIM though is insane for roaming so I don't want that SIM roaming but I want that SIM left enabled to see who calls and texts.
All that said and a few more gripes. The Mi MIX 3 is still a superb device and one I don't regret buying.
Notifications are awful. I have yet to have a notification display on the lock screen. When I do receive new mail or an SMS message, it can take up to 40 minutes before notifying me if the screen is off. If the screen is on I get the notification within a couple of minutes but that is only if the screen is on. Screen on means the screen is being displayed and the lock screen has been dismissed. It does not mean that the always on ambient display is on. That is just as bad as the display being completely off which makes me think that the problem lies with the phone being locked and is not just an over aggressive doze problem. I am using the notification repeater app and I also use Auto-notifications with its notification categories feature. Both of those have helped a little bit but it is rare that I get a notification within 10 minutes of my phone receiving e-mail or text messages when the screen is off (10 minutes is actually good).
There is also an issue with Android calendars. These aren't the calendars attached to your gmail account and they are not local calendars as well. Android calendars are usually created by 3rd party apps that offer holiday calendars for every country, sports scedules for every NBA, NFL, MLB, NHL and NCAA teams (motor sports and European football in some apps). The apps that also create TV listing calendars create their calendars as Android calendars. Any calendar app for Android can display them and you can choose to display or hide them individually within any android based calendar apps. Not with MIUI though. I can see them in the settings of any calendar app I install and can set them as hidden or viewable but they will not display as a calendar in any calendar app. MIUI has a few nice features but it is not worth the lack of timely notifications and it would also be nice if I could actually display all of my calendars. I have gone the custom GSI route and there were issues with every GSI based ROM I tried. I could install every GSI ROM I tried. I could even install Resurrection Remix GSI without a problem (repairing and resizing the system partition so you can install GAPPS is easier than most people realize. I kept running into deal breaker isssues with each GSI ROM though. I don't remember what the issue was with BlissROM but I do remember taking half a day to try and find a work around to no avail. Pixel Dust had an annoying random reboot problem and Resurrection Remix seemed to work just fine until it randomly would display a Setting up phone message after logging into the phone at a very random time. It would sometimes do this somewhere with the first few hours of use but could go as long as a day and a half before doing it. The only way to get past that screen was to get into the phones settings and clear out your fingerprints and set the phone to not require any type of password, pin or pattern. Once you clear those out the phone will continue to boot. If you want security you will need to setup security again and you will find yourself doing this all over again anywhere within the next hour too 24 hours. This is a known issue and there is a thread about it. It is a ROM issue because it is doing it on many different brands of phones. It is doing it very randomly though and the developers of the ROM have not had it happen to one of their phones yet. It makes the ROM unusable for those of us that are running into it though which is why I am back to MIUI (eu version) and in my opinion, MIUI ruins what would be a very good phone experience.
The pocket detection is occasionally driving me crazy, it's an issue on the PE rom too. The settings pull-down is active even on the lock screen, so while it's in my pocket it will sometimes turn wifi/bluetooth on or off, etc. I'm hoping the Cyanogen rom will eventually improve this. Only seems to be a problem for me when the radio app is automatically activated when I turn on my bluetooth headset.
Bluetooth connection also causes me some minor irritation. It won't auto-connect to the A2DP unit in my car, although it does connect to the phone module. I've been looking through the configuration files trying to find something to tweak this, but the structure of the current roms makes finding anything useful almost impossible.
AI button, also a hassle, but it can't be that bad because I haven't bothered to install the Magisk module to remap it yet. I much prefer a button to call up the assistant rather than "ok google".
Battery, I have no idea what you're talking about, but I guess it depends on what device you came from. This device is far and away the most battery frugal I've ever had, by a long shot, and the speed of the wireless charging makes it even better.
I never have a problem with the earpiece, but I do remove the lint from it fairly regularly, maybe that's the problem? If anything, the sound on calls I would rate as way better than previous phones.
My slider mechanism is also variable. Sometimes it's perfect, other times it's hard to get it to slide, but I think it's more to do with the friction from my fingers than the mechanism itself, sometimes the surfaces feel super-slippery! Give me cheap, rubberized plastic and a removable rear cover and battery every day of the week!
invisiblewave said:
Battery, I have no idea what you're talking about, but I guess it depends on what device you came from. This device is far and away the most battery frugal I've ever had, by a long shot, and the speed of the wireless charging makes it even better.
Click to expand...
Click to collapse
I guess you are right there with the point from where you came from. In comparison to my "old" Huawei Mathe 10 Pro the Battery is bad. But on the other Hand the Mix3 has (fast) Wireless Charging :good:
I checked the last weeks my Battery stats and usage. There was nothing uncommon. To me it is not satisfying, especially when I am on a trip (like last week) I barely made it back to the Hotel with a few % left.
Just to get this into Context (for most of you tl;dr):
Listening to music for 2 hrs
Navigation for public transport - also active for 2 hrs
checking Mails - hard to measure
searching for a place for diner - 20 min
checking social media... every minute is too much
In my opinion this is an average usage and therefore the battery is considered bad to me.
dondrexer said:
I guess you are right there with the point from where you came from. In comparison to my "old" Huawei Mathe 10 Pro the Battery is bad. But on the other Hand the Mix3 has (fast) Wireless Charging :good:
I checked the last weeks my Battery stats and usage. There was nothing uncommon. To me it is not satisfying, especially when I am on a trip (like last week) I barely made it back to the Hotel with a few % left.
Just to get this into Context (for most of you tl;dr):
Listening to music for 2 hrs
Navigation for public transport - also active for 2 hrs
checking Mails - hard to measure
searching for a place for diner - 20 min
checking social media... every minute is too much
In my opinion this is an average usage and therefore the battery is considered bad to me.
Click to expand...
Click to collapse
I think you must have a problem somewhere. Which software are you running?
georgito said:
I will add one more issue regarding MIUI - can't add trusted device (snartwatch) and trusted places
Click to expand...
Click to collapse
That's the deal breaker, had to go custom ROM route, no smart lock is no good.
dondrexer said:
Hey together. I have been using the Mix3 for a few month now. The black 265GB variant, China version with international Software.
But I got to say that there are a few problems I wasn't able to solve. Maybe you can!
So here is the List
Love
Screen ratio
MIUI
The overall Look. Gave it to a friend so he can call someone... Damn this phone looks good!
Position of Volume-rocker and Powerbutton
Wireless-charging
Not that good or worse
Thickness
The battery lasts barely a day (medium use)
The AI button... I hit this one too often by accident
No pocketdetection. The screen activates too often by accident (while calling, in the pocket or just picking up)
While calling you got to position the speaker very near to your ear, because if you move it a bit you can't understand the one on the other side anymore
inconsitent strength of the magnetic slider (sometimes it moves very hardly and other times too easy)
connection delays with bluetooth devices. If you did not connect a device in the last few days you got to manually connect the device (click on it in bluetooth settings)
If you got solutions for my concerns you can maybe safe it from getting abandoned or beeing forwarded to my brother
Click to expand...
Click to collapse
im very sure the problem with the slider is because of your case, remove ur case and try again move the slider
invisiblewave said:
I think you must have a problem somewhere. Which software are you running?
Click to expand...
Click to collapse
Latest weekly. MIUI 10 / 9.5.17 / (weekly)
juninhoak said:
im very sure the problem with the slider is because of your case, remove ur case and try again move the slider
Click to expand...
Click to collapse
Appreciate that tipp, but I don't use any case. (Why buy a pretty phone, when you put plastic around it?!) *screen is crying silently in fear :crying: *
Love the phone. The screen, everything. Running Lineage at the moment.
Really hate:
Notifications on MIUI. Seriously.
The process around flashing roms. Vendor image, dirty flash doesnt work (at least for me), switching roms difficult. Just very, very tiresome.
Would I buy it again? Definitely.
dondrexer said:
Hey together. I have been using the Mix3 for a few month now. The black 265GB variant, China version with international Software.
But I got to say that there are a few problems I wasn't able to solve. Maybe you can!
So here is the List
Love
Screen ratio
MIUI
The overall Look. Gave it to a friend so he can call someone... Damn this phone looks good!
Position of Volume-rocker and Powerbutton
Wireless-charging
Not that good or worse
Thickness
The battery lasts barely a day (medium use)
The AI button... I hit this one too often by accident
No pocketdetection. The screen activates too often by accident (while calling, in the pocket or just picking up)
While calling you got to position the speaker very near to your ear, because if you move it a bit you can't understand the one on the other side anymore
inconsitent strength of the magnetic slider (sometimes it moves very hardly and other times too easy)
connection delays with bluetooth devices. If you did not connect a device in the last few days you got to manually connect the device (click on it in bluetooth settings)
If you got solutions for my concerns you can maybe safe it from getting abandoned or beeing forwarded to my brother
Click to expand...
Click to collapse
Mine is running rooted crDroid ROM, which allows me to address most of these points.
Thickness: this is a tradeoff for sliding display.
Battery: crDroid is very good battery-wise, but also installed magic module LKT and get easily 1.5 days of heavy use now
AI button: Used magisk module and button remapper APK to remap mine, for me single press does nothing (because like you i press it accidentally all the time) double press toggles flashlight and long press launches google assistant.
Pocket detection: You can enable this in crDroid settings
Holding phone to ear: I don't have this problem
Slider: My slider took a bit of wearing in. That might sound strange but it was a bit squeeky and felt weaker than it should be to begin with but after a few months of use it now feels great.
Bluetooth delays: No idea, never use bluetooth. Sorry about that one.
Since I got the phone, while in pocket, I reject/answer 80% of the calls. I was under the effect of "yay nexus is back, google finally gave us a cheapster" so didn't really got bothered. But days are passing by and it's getting quite annoying, so to the point, could anybody tell me why this phone wakes up the screen on incoming calls when the proximity sensor is covered (ie. in pocket?) (if it's "normal" to do so, then why?). Proxi switch is fine, it triggers during calls and shows activity on sensor testing apps and whatnot. Default calls screen and whatsapp incoming calls, (heck I can unlock the phone with the fingerprint reader in my pocket without taking it out, now explain that.) ... Cherry on top the "slide to answer" thingy is vertical, so yeah there is the problem (while sliding it out from the pocket, it answers or rejects the call). I'm considering throwing it out lol it's so annoying lately. Android 9 was the same? (I had 3 android one phones to fill the superexpensive 3 generation pixel gap) Was I living under a rock? Can anyone try it? Thanks for the helpful inputs in advance.
strapabiro said:
Since I got the phone, while in pocket, I reject/answer 80% of the calls. I was under the effect of "yay nexus is back, google finally gave us a cheapster" so didn't really got bothered. But days are passing by and it's getting quite annoying, so to the point, could anybody tell me why this phone wakes up the screen on incoming calls when the proximity sensor is covered (ie. in pocket?) (if it's "normal" to do so, then why?). Proxi switch is fine, it triggers during calls and shows activity on sensor testing apps and whatnot. Default calls screen and whatsapp incoming calls, (heck I can unlock the phone with the fingerprint reader in my pocket without taking it out, now explain that.) ... Cherry on top the "slide to answer" thingy is vertical, so yeah there is the problem (while sliding it out from the pocket, it answers or rejects the call). I'm considering throwing it out lol it's so annoying lately. Android 9 was the same? (I had 3 android one phones to fill the superexpensive 3 generation pixel gap) Was I living under a rock? Can anyone try it? Thanks for the helpful inputs in advance.
Click to expand...
Click to collapse
There is no pocket mode on stock firmware. If you'd like to add one you can use Edxposed and the dark tricks module.
Sent from my Google Pixel 3a XL using XDA Labs
As hard as I'm trying, I start to see it's nearly impossible to be completely satisfied with the stock android experience. I gave up rooting, flashing, modding long time ago. Ain't got time for that. This leaves one choice, a sad but with time will get used to it.
strapabiro said:
As hard as I'm trying, I start to see it's nearly impossible to be completely satisfied with the stock android experience. I gave up rooting, flashing, modding long time ago. Ain't got time for that. This leaves one choice, a sad but with time will get used to it.
Click to expand...
Click to collapse
Do all 3a do this? I am looking into buying one but don't want to deal with something like that. This is exactly the reason I decided not to buy Galaxy S10e - just try to Google "S10 proximity sensor". It was never officially acknowledged/fixed by Samsung and over the time people just seem to "get used to it" and stop talking about it.
I don't know mate, that's why I asked others to try it please, it's really getting on my nerves and funny thing is, these kind of problems are a hit or miss on warranty claims ... doesn't even worth to try ... and I don't want to take this to reddit either because it'll only get downvoted to a lower than hell level by biased fanboys not to mention the google product forums with the "platinum product experts" and their generic "try this and try that" answers.
So yeah I'm angry.
strapabiro said:
I don't know mate, that's why I asked others to try it please, it's really getting on my nerves and funny thing is, these kind of problems are a hit or miss on warranty claims ... doesn't even worth to try ... and I don't want to take this to reddit either because it'll only get downvoted to a lower than hell level by biased fanboys not to mention the google product forums with the "platinum product experts" and their generic "try this and try that" answers.
So yeah I'm angry.
Click to expand...
Click to collapse
I never had issues, but probably I don't understand the issue yet, so I have a question: how do you know screen is waking up in pocket? For sure it's waking up if you move the device, i.e. take is off the table or turn it around. Are you sure screen switches on in the pocket and not while you are taking it out?
AndDiSa said:
I never had issues, but probably I don't understand the issue yet, so I have a question: how do you know screen is waking up in pocket? For sure it's waking up if you move the device, i.e. take is off the table or turn it around. Are you sure screen switches on in the pocket and not while you are taking it out?
Click to expand...
Click to collapse
You can test by trying to unlock the device while covering the proximity sensor.
Without any mods it'll unlock.
But like that's the main benefit to a Google phone running stock firmware. It's a perfect base for mods.
Sent from my Google Pixel 3a XL using XDA Labs
Skittles9823 said:
You can test by trying to unlock the device while covering the proximity sensor.
Without any mods it'll unlock.
But like that's the main benefit to a Google phone running stock firmware. It's a perfect base for mods.
Sent from my Google Pixel 3a XL using XDA Labs
Click to expand...
Click to collapse
This ... Or cover like 80% of the screen, leave only a small bar uncovered on the lower part of the phone (usbc port side) and ask someone to call you. You'll see on the remaining uncovered part that the screen woke up which is hilarious. Honestly at this point I don't understand how a feature like this can be overlooked by r&d.
Sadly modding is no option for me, for safety and other reasons.
There is another thread about this in the 3a xl section, hope it doesn't count as duplicate.
strapabiro said:
Sadly modding is no option for me, for safety and other reasons.
Click to expand...
Click to collapse
What reasons? This is a Google phone. You're allowed to unlock the bootloader and flash modified software without breaking warrantee.
If you have issues, it's easy to just flash the factory image back to completely stock and relock the bootloader.
Sent from my Google Pixel 3a XL using XDA Labs
@strapabiro,
Have you tried this app?
Skittles9823 said:
What reasons? This is a Google phone. You're allowed to unlock the bootloader and flash modified software without breaking warrantee.
If you have issues, it's easy to just flash the factory image back to completely stock and relock the bootloader.
Sent from my Google Pixel 3a XL using XDA Labs
Click to expand...
Click to collapse
You're shifting the subject, but the short answer is, imagine I never had an apple product in my life but I rather buy an iphone than start doing that But that's me and that's another topic like I said, thanks though.
strapabiro said:
You're shifting the subject, but the short answer is, imagine I never had an apple product in my life but I rather buy an iphone than start doing that But that's me and that's another topic like I said, thanks though.
Click to expand...
Click to collapse
Fair argument.
Sent from my Google Pixel 3a XL using XDA Labs
Today I had my phone in my coat pocket at an appointment for about an hour hanging on a coat rack not even being touched. When I came back to, the screen was on, on the lock screen, and if was pretty warm with battery down a good 25 percent. I'm wondering if what you're talking about here has something to do with this? I was confused why or what was going on with it. No unusual apps were in memory in developer settings.
kc6wke said:
@strapabiro,
Have you tried this app?
Click to expand...
Click to collapse
I have found this "feature" annoying as well on my 3a XL. However I tired the app that you suggested and it seems to work fine. Thanks for providing a decent solution to the OPs question.