aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template
blob: e40e77ef56459492243701d04f344b58b6f8fd48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package PACKAGE;
IMPORT_RESOURCE_CLASS
import android.app.Activity;
import android.os.Bundle;

public class ACTIVITY_NAME extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}