Home | History | Annotate | Download | only in templates
      1 package PACKAGE;
      2 IMPORT_RESOURCE_CLASS
      3 import android.app.Activity;
      4 import android.os.Bundle;
      5 
      6 public 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