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

Last change on this file since 0b49d7a 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.