<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont

本文涉及的产品
转发路由器TR,750小时连接 100GB跨地域
简介: 类package online.geekgalaxy.layoutlearn;import android.Manifest;import android.

package online.geekgalaxy.layoutlearn;

import android.Manifest;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.ActivityCompat;
import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * Created by jailman on 2017/9/18.
 */

public class login extends Activity {

    public void SendSMS(String PhoneNumber, String SMS) {
        SmsManager sm = SmsManager.getDefault();
        if (isPhoneNumberValid(PhoneNumber) && isWithin70(SMS)) {
            /**
             * 当两个判定条件都通过时发送短信,先构建一个PendingIntent对象并使用getBroadcast()广播
             * 然后将PendingIntent,短信,电话号码等内容传入SmsManager的sendTextMessage()方法中*/
            try {
                PendingIntent pi = PendingIntent.getBroadcast(login.this, 0, new Intent(), 0);
                sm.sendTextMessage(PhoneNumber, null, SMS, pi, null);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            Toast.makeText(login.this, "短信发送成功", Toast.LENGTH_LONG).show();
        } else {
            if (!isPhoneNumberValid(PhoneNumber)) {
                if (!isWithin70(SMS)) {
                    Toast.makeText(login.this, "电话号码格式错误!短信内容超过70个字!请改正!!!", Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(login.this, "电话号码格式错误!请改正!!!", Toast.LENGTH_LONG).show();
                }
            } else {
                if (!isWithin70(SMS)) {
                    Toast.makeText(login.this, "短信内容超过70个字!请改正", Toast.LENGTH_LONG).show();
                }
            }
        }
    }


    //判断短信内容是否超过70个字
    public static boolean isWithin70(String s) {
        return s.length() <= 70;
    }

    //判断电话号码的格式是否正确
    public static boolean isPhoneNumberValid(String phoneNumber) {
        boolean valid = false;
        /**
         * 两种电话号码格式
         * ^\\(? 表示可以以(开头
         * (\\d{3}) 表示后面紧跟3个数字
         * \\)? 表示可以以)继续
         * [- ]? 表示在上述格式后面可以使用选择性的“-”继续
         * (\\d{4}) 表示后面紧跟4个数字
         * [- ]? 表示在上述格式后面可以使用选择性的“-"继续
         * (\\d{4})$ 表示以4个数字结束
         * 综上所述:正确的电话号码的格式可以以下面等几种做为参考:
         * (123)456-78900 123-456-78900 12345678900 (123)-456-78900
         * */
        String expression01 = "^\\(?(\\d{3})\\)?[- ]?(\\d{4})[- ]?(\\d{4})$";
        String expression02 = "^\\(?(\\d{3})\\)?[- ]?(\\d{5})[- ]?(\\d{5})$";
        //创建Pattern对象
        Pattern p01 = Pattern.compile(expression01);
        //将Pattern作为参数传入Matcher,当做电话号码phoneNumber的正确格式
        Matcher m01 = p01.matcher(phoneNumber);
        Pattern p02 = Pattern.compile(expression02);
        Matcher m02 = p02.matcher(phoneNumber);
        valid = m01.matches() || m02.matches();
        return valid;
    }


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.login);

        //sms button
        final Button bomb = (Button) findViewById(R.id.button4);
        bomb.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                String PN = "13xxxxxxx";
                String SMS = "我要用短信轰炸你!这个是安卓发短信功能!";
                SendSMS(PN, SMS);
            }
        });

        //call button
        final Button call = (Button) findViewById(R.id.button5);
        call.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent = new Intent(Intent.ACTION_CALL);
                Uri data = Uri.parse("tel:" + "13xxxxxx");
                intent.setData(data);
                if (ActivityCompat.checkSelfPermission(login.this, Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
                    // TODO: Consider calling
                    //    ActivityCompat#requestPermissions
                    // here to request the missing permissions, and then overriding
                    //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
                    //                                          int[] grantResults)
                    // to handle the case where the user grants the permission. See the documentation
                    // for ActivityCompat#requestPermissions for more details.
                    Toast.makeText(login.this, "Call permission denied!", Toast.LENGTH_LONG).show();
                    return;
                }
                startActivity(intent);
        }
    });



}
}


目录
相关文章
|
Web App开发 前端开发 Java
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
 Connection reset by peer的常见原因: 1)服务器的并发连接数超过了其承载量,服务器会将其中一些连接关闭;    如果知道实际连接服务器的并发客户数没有超过服务器的承载量,看下有没有网络流量异常。
863 0
|
Web App开发 存储 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
NoSuchObjectException(message:There is no database named cloudera_manager_metastore_canary_test_db_hive_hivemetastore_df61080e04cd7eb36c4336f71b5a8bc4) at org.
1084 0
|
Web App开发 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
service cloudera-scm-agent stop service cloudera-scm-agent stop umount /var/run/cloudera-scm-agent/process umo...
765 0
|
Web App开发 前端开发 数据库
|
Web App开发 前端开发
|
Web App开发 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
在统计分析系统中, 维度:指人们分析事物的角度。比如,分析活跃用户,可以从时间的维度,也可以从地域的维度去看,也可以时间、地域两个维度组合去分析。
670 0
|
Web App开发 前端开发 程序员
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
如何建立一个“铁打的营盘”? 中国有句古话,叫做铁打的营盘流水的兵。   我相信,创业初期,当团队里有人离开的时候,肯定有不少创业者拿这句话来安慰自己。
818 0
|
Web App开发 监控 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
Spark Streaming 的一些问题,做选型前关注这些问题可以有效的降低使用风险。 checkpoint checkpoint 是个很好的恢复机制。
941 0