source: galcon-client/src/com/example/helloandroid/HelloAndroid.java@ d936b97

Last change on this file since d936b97 was d936b97, checked in by dportnoy <devnull@…>, 14 years ago

Initial commit

  • Property mode set to 100644
File size: 348 bytes
Line 
1package com.example.helloandroid;
2
3import android.app.Activity;
4import android.os.Bundle;
5
6public class HelloAndroid 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}
Note: See TracBrowser for help on using the repository browser.