发送短息和拨打电话功能
Email:[email protected]
捣腾了一小会,实现了拨打电话和发送短信的功能,作为手机的基本功能,还是值得一尝试,在此小结一下。
环境:
IDE:Android Studio
JDK:1.8
系统:win7 64位
1.拨打电话
<uses-permission android:name="android.permission.CALL_PHONE" />
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+phone)); try{ startActivity(callIntent); }catch(Exception e) { return; }备注:(1)这段代码可以有其他形式,无非都是设置intent对象的一些参数,主要是拨打的电话号码。
(2)如果没有try{}..catch{}块,会提示错误的,但是看到网上很多版本都没有try..catch,至少我遇到错误了。
(3)其次可以通过checkPermission()来判断是否获取了权限。
(4)Intent.ACTION_CALL是可以直接拨打电话的,如果使用Intent.ACTION_DIAL,只是进入拨号界面。
2.发送短息
<uses-permission android:name="android.permission.SEND_SMS" />
<?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:columnCount="2" android:rowCount="3"> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="53dp" android:layout_row="0" android:layout_column="0"> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/phoneText" android:layout_weight="1" android:hint="联系人" /> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="443dp" android:layout_row="2" android:layout_column="0"> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/contentText" android:layout_weight="0.75" android:layout_gravity="bottom" android:hint="输入信息" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="发送" android:id="@+id/sendButton" android:layout_gravity="bottom" /> </LinearLayout> </GridLayout>
Intent messageIntent = new Intent(ShowAddressActivity.this,SendMessageActivity.class); messageIntent.putExtra("phone",phone); startActivity(messageIntent);
import android.app.Activity; import android.app.AlertDialog; import android.content.Intent; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.telephony.SmsManager; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import java.util.List; public class SendMessageActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.edit_message); //将选择的电话号码显示 String phone = this.getIntent().getStringExtra("phone"); final EditText phoneText = (EditText)findViewById(R.id.phoneText); phoneText.setText(phone); //获取短信内容 final EditText contentText = (EditText)findViewById(R.id.contentText); Button sendButton = (Button)findViewById(R.id.sendButton); sendButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //获取电话号码 String phone = phoneText.getText().toString(); String content =contentText.getText().toString(); if("".equals(content)){ new AlertDialog.Builder(SendMessageActivity.this) .setIcon(android.R.drawable.ic_dialog_alert) .setTitle("警告") .setMessage("请输入短信内容") .setPositiveButton("确定",null) .show(); return; } if("".equals(phone)){ new AlertDialog.Builder(SendMessageActivity.this) .setIcon(android.R.drawable.ic_dialog_alert) .setTitle("警告") .setMessage("请输入联系人号码") .setPositiveButton("确定",null) .show(); return; } SmsManager smsManager = SmsManager.getDefault(); if(content.length()>70) { List<String> contents = smsManager.divideMessage(content); for(String sms:contents) { smsManager.sendTextMessage(phone,null,sms,null,null); } } else { smsManager.sendTextMessage(phone,null,content,null,null); } Toast.makeText(SendMessageActivity.this, R.string.str_remind_sms_send_finish, Toast.LENGTH_SHORT).show(); } }); } }备注:R.string.str_remind_sms_send_finish ="发送完成"。