自写的Android直接发送短信的方法.rar

时间:2022-07-30 06:38:37
【文件属性】:

文件名称:自写的Android直接发送短信的方法.rar

文件大小:46KB

文件格式:RAR

更新时间:2022-07-30 06:38:37

Android源码-网络编程

自写的Android直接发送短信的方法,这个不是聊天程序,是手机发短信程序,自己写的,没有使用Android中的固定模块,下面是自写的发短信代码片段,供参考:   重写的按钮监听方法   if(v == select){//按下了选择联系人按钮    Uri uri = Uri.parse("content://contacts/people");    Intent intent = new Intent(Intent.ACTION_PICK, uri);//创建Intent    startActivityForResult(intent, 1);//切换到通讯录   }   else if(v == send){//按下发送按钮    v.setEnabled(false);//设置按钮为不可用    //获取输入的短信内容    EditText etSms=(EditText)findViewById(R.id.smsBody);//得到EditText控件的引用    String smsStr=etSms.getText().toString();//得到短信的文本    Set keySet = peoples.keySet();//得到键值集合    Iterator ii = keySet.iterator();    people.setText("");//置空    while(ii.hasNext()){//循环    Object key = ii.next();//得到键值    String tempName = (String)key;//姓名    String tempPhone = peoples.get(key);//得到电话号码    //判断号码字符串是否合法    if(PhoneNumberUtils.isGlobalPhoneNumber(tempPhone)){//合法则发送短信    sendSMS(tempPhone,smsStr,v);//发送短信    }    }   }完整源代码请在本页面下载。


【文件预览】:
codesc.net
----sendsms()
--------.project(847B)
--------default.properties(449B)
--------bin()
--------AndroidManifest.xml(803B)
--------src()
--------res()
--------.classpath(280B)
--------gen()
--------assets()

网友评论