android find pressure on screen

2019-02-20 04:23发布

I would like to roughly understand the amount of pressure the finger presses on the capacitive screen on android. My idea is to get the area covered by the finger when it is touched (maybe some extra parameters to get it more accurate, but thats the main idea).

So, is there any way to find the are covered? (for example get the number of pixels covered).

3条回答
Ridiculous、
2楼-- · 2019-02-20 04:54

I do not really know but you have access to the following function :

MotionEvent e;
float press = e.getPressure(...);

press will be between 0 and 1, from 0 = no pressure, to 1 = normal pressure, however it can be more then 1...

Your thing is totally NIH... Use something that already exist ? Or maybe it doesn't cover your needs !

查看更多
霸刀☆藐视天下
3楼-- · 2019-02-20 04:58

There is only MotionEvent.getPressure() (which you probably already found). I doubt that there is something that reports how many pixel are covered by the finger.

查看更多
放荡不羁爱自由
4楼-- · 2019-02-20 05:12

You can use MotionEvent.getSize() to get the normalized value (from 0 to 1) of the area of screen being pressed. This value is correlated with the number of pixels pressed.

查看更多
登录 后发表回答