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

android开发

开发平台:

Java

  1. package iedc.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.     
  19.     mButton1 = (Button) findViewById(R.id.myButton1);
  20.     
  21.     mButton1.setOnClickListener(new Button.OnClickListener()
  22.     {
  23.       @Override
  24.       public void onClick(View arg0)
  25.       {
  26.         // TODO Auto-generated method stub
  27.         new AlertDialog.Builder(ex03_12.this)
  28.         .setTitle(R.string.app_about)
  29.         .setMessage(R.string.app_about_msg)
  30.         .setPositiveButton(R.string.str_ok,
  31.             new DialogInterface.OnClickListener()
  32.             {
  33.              public void onClick(DialogInterface dialoginterface, int i)
  34.              {
  35.              }
  36.              }
  37.             )
  38.         .show();
  39.       }
  40.       
  41.     });
  42.   }
  43. }