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

android开发

开发平台:

Java

  1. package irdc.ex05_19;
  2. import android.app.Activity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.ImageButton;
  7. public class EX05_19 extends Activity
  8. {
  9.   private ImageButton myImageButton;
  10.   /** Called when the activity is first created. */
  11.   @Override
  12.   public void onCreate(Bundle savedInstanceState)
  13.   {
  14.     super.onCreate(savedInstanceState);
  15.     setContentView(R.layout.main);
  16.     myImageButton = (ImageButton) findViewById(R.id.myImageButton);
  17.     myImageButton.setOnClickListener(new ImageButton.OnClickListener()
  18.     {
  19.       @Override
  20.       public void onClick(View v)
  21.       {
  22.         /* 调用拨号的画面 */
  23.         Intent myIntentDial = new Intent("android.intent.action.CALL_BUTTON");
  24.         startActivity(myIntentDial);
  25.       }
  26.     });
  27.   }
  28. }