Why is this soo hard to find out?

public boolean onTouch(View v, MotionEvent event)

I need to convert float event.getY() to and int.

Is this possible.

event.getY().intValue() will not work at all.

Any ideas?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Uhhh, yeah, how about:

int y = (int)event.getY();

You see getY() only returns a float for devices that have a sub-pixel accuracy.

link|improve this answer
It always returns a float. Maybe you mean the float represents an integer? – Matthew Flaschen Jun 11 '10 at 16:54
2  
Correct. On devices that don't have sub-pixel accuracy the float is always something like 235.0. You can just cast to an int to get the pixel value. – CaseyB Jun 11 '10 at 17:02
Thanks this worked. – shaneburgess Jun 11 '10 at 21:14
feedback

Just cast it:

int val = (int)event.getY();
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.