Mobile
android.txt
Associated article: The Android Mobile Phone Platform
Tags: Web Development C/C++ Tools Open Source Mobile JVM Languages Design
Published source code accompanying the article by Tom Thompson about Android, an open source mobile phone stack developed by Google for the Open Handset Alliance. Also see ANDROID..ZIP.
The Android Mobile Phone Platform
by Tom Thompson
Listing One
(a) Java ME
class DrawScreen extends Canvas implements CommandListener {
private int width;
private int height;
DrawScreen() { // Constructor
width = getWidth();
height = get Height();
}
(b) Android
class SpaceView extends View {
public SpaceView(...


