package org.crazyit.helloworld;
/****/
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TextView;public class HelloWorld extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button bn = (Button)findViewById(R.id.ok);
        bn.setOnClickListener(new OnClickListener(){
         public void onClick(View v){
         final TextView show = (TextView)findViewById(R.id.show);
         show.setText("Hello World" + new java.util.Date());
         }
        });
        
    }
}
/**请大侠帮下我,谢谢了。**/