I feel like I've done this before ...

This commit is contained in:
Dan Buch
2012-02-19 23:53:58 -05:00
commit 029485aa59
9 changed files with 210 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.mbh;
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}