EX99_01.java
上传用户:vip_99
上传日期:2021-03-27
资源大小:61159k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. package irdc.ex99_01;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Button;
  6. import android.widget.TextView;
  7. public class EX99_01 extends Activity {
  8.     /** Called when the activity is first created. */
  9.   
  10.   public Button mButton1;
  11.   public TextView mTextView1;
  12.   
  13.   
  14.   
  15.   
  16.   @Override
  17.     public void onCreate(Bundle savedInstanceState) 
  18. {
  19.      super.onCreate(savedInstanceState);
  20.      setContentView(R.layout.main);
  21.   
  22.      mTextView1 = (TextView) findViewById(R.id.mTextView1);
  23.      mButton1 = (Button) findViewById(R.id.mButton1);
  24.      
  25.      mButton1.setOnClickListener(new Button.OnClickListener()
  26.   {  
  27.      @Override
  28.      public void onClick(View v)
  29.     {
  30.        mTextView1.setText("HI~~~");
  31.        
  32.     }
  33.   });
  34.   }
  35. }