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

android开发

开发平台:

Java

  1. package irdc.ex03_12;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.content.DialogInterface;
  5. import android.os.Bundle;
  6. import android.view.View;
  7. import android.widget.Button;
  8. public class EX03_12 extends Activity 
  9. {
  10.   private Button mButton1;
  11.   
  12.   /** Called when the activity is first created. */
  13.   @Override
  14.   public void onCreate(Bundle savedInstanceState) 
  15.   {
  16.     super.onCreate(savedInstanceState);
  17.     setContentView(R.layout.main);
  18.     mButton1 = (Button) findViewById(R.id.myButton1);
  19.     mButton1.setOnClickListener(new Button.OnClickListener()
  20.     {
  21.       @Override
  22.       public void onClick(View v)
  23.       {
  24.         // TODO Auto-generated method stub
  25.         new AlertDialog.Builder(EX03_12.this)
  26.         .setTitle(R.string.app_about)
  27.         .setMessage(R.string.app_about_msg)
  28.         .setPositiveButton(R.string.str_ok,
  29.            new DialogInterface.OnClickListener()
  30.             {
  31.            public void onClick(DialogInterface dialoginterface, int i)
  32.              {
  33.              }
  34.              }
  35.             )
  36.         .show();
  37.       }      
  38.     });
  39.   }
  40. }