Post
by j.hamilton » Tue Feb 26, 2013 2:49 pm
[quote="ponury"][quote="ben"]
Can you tell me the start and end coordinates of a gesture from down to up in the middle of the screen? and the whole screen?
And can you explain how the coordinates are laid out so we can customize the gestures by ourselves?[/quote]
Top-Left corner is 0,0
Bottom-Right corner is 720, 1280
so I suppose when you set:
start point: 360, 1280
stop point: 360, 640
threshold: 256, 256
swipe-up from the bottom should work (i think)
[/quote]
Tried this and it doesnt work. Using the Nexus 4. Changed the coordinates to match my screen so it would slide from middle of bottom to middle of middle and no dice.
Start: 385, 1275
Stop: 385, 686
Edit:
Got it to work
well just because 1280 x 768 pixel resolution (320 ppi) are the phones specs, doesnt mean thats what needs to work here
To unlock screen: (from bottom mid to center mid)
Start: 800, -1
Stop: 800, 2400
Threshold: 200, 100
To Lock screen: (from right mid to left bottom)
Start: 1400, 800
Stop: 20, 2400
Threshold: 350, 500
Those settings got it to work perfectly. I guess i dont understand how the pixel layout works on this phone. I just put numbers til it did what i wanted