• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package PACKAGE;
2IMPORT_RESOURCE_CLASS
3import android.app.Activity;
4import android.os.Bundle;
5
6public class ACTIVITY_NAME extends Activity {
7    /** Called when the activity is first created. */
8    @Override
9    public void onCreate(Bundle savedInstanceState) {
10        super.onCreate(savedInstanceState);
11        setContentView(R.layout.main);
12    }
13}
14