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