[android-developers] Re: Equivalent to !kbhit() in c method in Android

2011-09-16 Thread ursNARESH
can any one help me ?? On Sep 1, 11:33 am, ursNARESH naresh.ap...@gmail.com wrote: I am new to Android. I am planing to write code for typing tutor game application. In that i need to scroll down letters from top to bottom until user enters a key. I can write the same in c like while

[android-developers] Equivalent to !kbhit() in c method in Android

2011-09-01 Thread ursNARESH
I am new to Android. I am planing to write code for typing tutor game application. In that i need to scroll down letters from top to bottom until user enters a key. I can write the same in c like while(!kbhit()) { print(c); } but i don't know how to convert the same into Android. I tried