Why isn’t view.invalidate immediately redrawing the screen in my android game Just to add...unless you make your own threads all your code executes in the UI thread. If you sleep or do a lot of computation in this thread the will experience a less responsive UI and eventually you'll get an Application Not Responding (ANR) box.
Android Marketplace: Changing application’s package Nope. You can have multiple applications with the same signature. You could remove the old application from Market, but you'll still have the installed base.
How to get Android application id? No. If two applications have the same shareUserId AND are signed with the same signature the can share data. Package name is not an issue.
Is it legal to call the start method twice on the same Thread? Thanks. I checked the documentation with the IDE and the Java tutorial for threads (and google too). I'll check the API spec in the future. That critical "..never legal to start more than once.." is not in the other readings.
In Java, what is a shallow copy? Okay. It looks like the takeaway is that a Java shallow/deep copy is the same as the rest of the programming worlds, it's just the android 1.5 java.util.Calendar.clone() documentation is just wrong. clone() is a deep copy, not a shallow copy.