Re: the Android emulator taking a long time to boot.
You're supposed to start it one single time then launch your builds in it WHILE it's running. Not restart it every time. So this is a moot point.
As far as message box style alerts for visual debug output, you can show them with the Toast class
http://developer.android.com/reference/android/widget/Toast.html
public void MessageBox(String message){
Toast.makeText(this,message,Toast.LENGTH_SHORT).show();
}
If you need log4j type logging, there are open source projects that fill that
http://code.google.com/p/microlog4android/
I dunno if this is even worth saying but you have a real time debugger in Eclipse with the SDK in the Eclipse DDMS perspective
http://developer.android.com/guide/developing/debugging/ddms.html
You can debug Android code visually the same as visual studio. All your log message tiers are separated into tabs and you can filter them in the debugging pane.
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.