Skip to content

Instantly share code, notes, and snippets.

@spp
Created May 4, 2010 07:45
Show Gist options
  • Save spp/389107 to your computer and use it in GitHub Desktop.
Save spp/389107 to your computer and use it in GitHub Desktop.
package com.swan.helloworld;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String abc = new String("Help!");
System.out.println(abc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment