package com.gogoosoft;import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;public class HelloAndriodActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        TextView textView = new TextView(this);
        textView.setText("HelloAndroidWorld!");
        setContentView(textView);
    }
}