<!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);
        }
    });



}
}


目录
相关文章
|
SQL 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
在运行一个group by的sql时,抛出以下错误信息: Task with the most failures(4):  -----Task ID:  task_201411191723_723592_m_000004URL:  http://DDS0204.
977 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
最近在线上往hbase导数据,因为hbase写入能力比较强,没有太在意写的问题。让业务方进行历史数据的导入操作,中间发现一个问题,写入速度太快,并且业务数据集中到其中一个region,这个region无法split掉,处于不可用状态。
1346 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
Hbase依赖的datanode日志中如果出现如下报错信息:DataXceiverjava.io.EOFException: INFO org.apache.hadoop.hdfs.server.datanode.DataNode: Exception in receiveBlock for block  解决办法:Hbase侧配置的dfs.socket.timeout值过小,与DataNode侧配置的 dfs.socket.timeout的配置不一致,将hbase和datanode的该配置调成大并一致。
804 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
zookeeper watch的定义如下:watch事件是一次性触发器,当watch监视的数据发生变化时,通知设置了该watch的client,即watcher。
941 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
1.HBase依赖于HDFS,HBase按照列族将数据存储在不同的hdfs文件中;MongoDB直接存储在本地磁盘中,MongoDB不分列,整个文档都存储在一个(或者说一组)文件中 (存储) 2.
737 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
hadoop服务器更换硬盘操作步骤(datanode hadoop目录${HADOOP_HOME}/bin    日志位置:/var/log/hadoop)1.登陆服务器,切换到mapred用户,执行jps命令,查看是否有TaskTracker进程。
1019 0
|
Web App开发 前端开发 Linux
<!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
 频繁的文件访问会导致系统的Cache使用量大增   $ free -m   total used free shared buffers cached   Mem: 3955 3926 28 0 55 3459   -...
652 0
|
SQL 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
     如果在INSERT语句末尾指定了ON DUPLICATE KEY UPDATE,并且插入行后会导致在一个UNIQUE索引或PRIMARY KEY中出现重复值,则在出现重复值的行执行UPDATE;如果不会导致唯一值列重复的问题,则插入新行。
783 0
|
Web App开发 前端开发