Google Android之Hello,andylee1988!
package org.andylee1988;
?
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
?
public class HelloAndylee1988 extends Activity {
??? /** Called when the activity is first created. */
??? @Override
??? public void onCreate(Bundle savedInstanceState) {
??????? super.onCreate(savedInstanceState);
??????? //setContentView(R.layout.main);
??????? TextView tv = new TextView(this);
??????? tv.setText("Hello,andylee1988!");
??????? setContentView(tv);
??? }
}