企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
发送短息和拨打电话功能 Email:chentravelling@163.com 捣腾了一小会,实现了拨打电话和发送短信的功能,作为手机的基本功能,还是值得一尝试,在此小结一下。 环境: IDE:Android Studio JDK:1.8 系统:win7 64位 1.拨打电话 - 步骤1:在AndroidMainfest.xml文件中获取拨打电话的权限,增加以下内容: ~~~ <uses-permission android:name="android.permission.CALL_PHONE" /> ~~~ - 步骤2:通过Intent作为通信桥梁,实现打电话。在Activity中增加以下代码: ~~~ 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.发送短息 - 步骤1:在AndroidMainfest.xml文件中获取发送短信的权限,增加以下内容: ~~~ <uses-permission android:name="android.permission.SEND_SMS" /> ~~~ - 步骤2:自定义编辑短信的edit_message.xml: ~~~ <?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> ~~~ - 步骤3:(本人的需求是点击listView中的一个联系人,选择发短信,再跳转到自定义的编辑短信的界面)activity跳转,传递电话号码,在Activity中增加以下代码: ~~~ Intent messageIntent = new Intent(ShowAddressActivity.this,SendMessageActivity.class); messageIntent.putExtra("phone",phone); startActivity(messageIntent); ~~~ - 步骤4:在发送短信的activity中获取电话号码,显示在editText中,在发送时重新获取EditText中电话号码,因为电话号码可以手动编辑 ~~~ 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 ="发送完成"。 综上就实现了拨打电话和发送短信的功能,安装在手机上测试了一下,还是挺满意,除了界面~需要进一步完善的地方:1)短信功能暂时不支持多人同时发送,其实想想这个功能也是比较容易实现的~2)通话记录和短信记录暂时没有设计数据库进行保存。3)支持发送图片等。