Last change
on this file since 1a91f0d was d936b97, checked in by dportnoy <devnull@…>, 15 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
348 bytes
|
Rev | Line | |
---|
[d936b97] | 1 | package com.example.helloandroid;
|
---|
| 2 |
|
---|
| 3 | import android.app.Activity;
|
---|
| 4 | import android.os.Bundle;
|
---|
| 5 |
|
---|
| 6 | public 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.