When a try to deploy my android App in the emulator, after the application(.apk) gets loaded in to the emulator, when i tap on the menu button in emulator for loading my application’s initial screen, its is raising me a alert message with this information,
<pre>Sorry Application Keyboard in Process (Force Quit / Wait)..</pre>
and some other similar messages too..
What does it mean,can anybody help me…How can i avoid this issue that is happening at all time,
When this happens,unless i tap on Wait button, i can’t able to proceed.
Thanks in advance..
This usually happens because the application is doing something on the UI thread that is taking a long time. If you are loading a lot of data when your app loads you should do it in a background thread so you can display a loading screen to the user and leave the app responsive.