summaryrefslogtreecommitdiff
path: root/templates/java_file.template
blob: 19714a8e3784b3e3becf1a5994034ce71dcebeb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package PACKAGE;

import android.app.Activity;
import android.os.Bundle;

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