使用Intent的发短信使用方法

在一个Activity中使用Intent发送短信

package com.zhuguangwei;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class IntentActivity extends Activity {
private Button myButton;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

myButton
= (Button) findViewById(R.id.myButton);
myButton.setOnClickListener(
new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
           // 使用Intent发短信
Uri uri
= Uri.parse("smsto:13800000000");
Intent intent
= new Intent(Intent.ACTION_SENDTO,uri);
intent.putExtra(
"sms_body", "The SMS text");
startActivity(intent);
}
});
}
}

 

 

posted @ 2011-01-25 11:04  无忧一生  阅读(6895)  评论(0编辑  收藏  举报