tring phoneNum = eText.getText().toString();
if (PhoneNumberUtils.isGlobalPhoneNumber(phoneNum)) {
/*
* 创建一个新的Intent对象的基本语法如下: Intent <intent_name> = new
* Intent(<action>,<Data>) 在Android中,传递给Intent的数据用URI格式表示
*/
Intent intent_call = new Intent(Intent.ACTION_DIAL, Uri
.parse("tel://" + phoneNum));
startActivity(intent_call);
} else {
// 1、 这里的第一个参数不能用this,因为此时是在内部类OnClickListener中,this指的是它
// 这里应该是用MyDialer.this
// 2、Toast是包含给用户快速提醒信息的一种通知机制
Toast.makeText(MyDialer.this, R.string.incorrect_num,
Toast.LENGTH_LONG).show();
}