Android 绑定按钮事件,并发送短信代码

来源:互联网 发布:淘宝运营简历范文 编辑:程序博客网 时间:2024/05/22 14:51

  myButton.setOnClickListener(new MyButtonListener());
    }
    class MyButtonListener implements OnClickListener{

  public void onClick(View v)
  {
   // TODO Auto-generated method stub
//  Intent intent=new Intent();
//  intent.putExtra("testIntent", "12340");
//  intent.setClass(myActivity.this,OtherActivity.class );
//  myActivity.this.startActivity(intent);
   Uri uri=Uri.parse("smsto:/0800000123");
   Intent intent=new Intent(Intent.ACTION_SENDTO,uri);
   intent.putExtra("sms_body", "the sms text");
   startActivity(intent);
   
  }
     
     
    }

原创粉丝点击