I am not very clear whether the pressure sensor available in android is used to measure the atmospheric pressure or the pressure on the touch screen? (getAltitude()/ event.getPressue() )

Do we have any such pressure sensor in iOS which could give us values of atmospheric/finger pressure?

Any help appreciated,

link|improve this question

52% accept rate
1  
iPhones (and most Android phones, I believe) use conductive touch screens--not pressure sensitive touch screens. – DA. Aug 30 '11 at 0:15
feedback

1 Answer

event.getPressure() measures finger pressure on the touchscreen: http://developer.android.com/reference/android/view/MotionEvent.html#getPressure(int)

getAltitude will give you your geo altitude: http://developer.android.com/reference/android/location/Location.html

I don't know about iOS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.