`

发短信+拨电话--10010小助手

 
阅读更多
package com.su.phonebill;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;

import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class PhoneBillActivity extends Activity {
	/** Called when the activity is first created. */
	SmsManager sManager;

	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		sManager = SmsManager.getDefault();
		Button buttonCombo = (Button) findViewById(R.id.buttonCombo);
		Button buttonBalance = (Button) findViewById(R.id.buttonBalance);
		Button buttonPhone = (Button)findViewById(R.id.buttonPhone);
		buttonCombo.setOnClickListener(new View.OnClickListener() {

			@Override
			public void onClick(View v) {
				// 创建一个PendingIntent对象
				PendingIntent pi = PendingIntent.getActivity(PhoneBillActivity.this, 0,
						new Intent(), 0);
				// 发送短信
				sManager.sendTextMessage("10010", null,"412", pi, null);
				// 提示短信发送完成
				Toast.makeText(PhoneBillActivity.this, "短信发送完成", 8000).show();

			}
		});
		buttonBalance.setOnClickListener(new View.OnClickListener() {

			@Override
			public void onClick(View v) {

				PendingIntent pi = PendingIntent.getActivity(
						PhoneBillActivity.this, 0, new Intent(), 0);
				sManager.sendTextMessage("10010", null, "ye", pi, null);

				Toast.makeText(PhoneBillActivity.this, "短信发送完成", 1000).show();

			}
		});
		buttonPhone.setOnClickListener(new View.OnClickListener() {
			
			public void onClick(View v) {
				Intent intent = new Intent();
				intent.setAction("android.intent.action.CALL");
				intent.setData(Uri.parse("tel:10010"));
				startActivity(intent);
				
			}
		});
	}

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics