aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template
blob: 173ff963d30e43416b6e4dc17685b897d0734d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package PACKAGE;

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);
    }
}