Android撥打到電話功能執行個體詳解_Android

來源:互聯網
上載者:User

本文執行個體分析了Android撥打到電話功能。分享給大家供大家參考,具體如下:

打電話是手機的一個最基本的功能,現在android智能手機非常流行,裡面有多種多樣的精彩的手機功能,但是android手機如何?打電話這個準系統呢?現以執行個體說明如下。首先呈上程式:

import java.util.regex.Matcher;import java.util.regex.Pattern;import android.app.Activity;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;import android.widget.Toast;public class A01Activity extends Activity { private Button b; private EditText et;  /** Called when the activity is first created. */  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    b=(Button)findViewById(R.id.button);    et=(EditText)findViewById(R.id.et);    b.setOnClickListener(new OnClickListener(){  @Override  public void onClick(View v) {  // TODO Auto-generated method stub    String s=et.getText().toString();    if(isPhoneNumberValid(s)==true){     Intent i=new Intent("android.intent.action.CALL",Uri.parse("tel:"+s));     startActivity(i);     et.setText("");    }    else{     et.setText("");     Toast.makeText(A01Activity.this, "您輸入的電話號碼格式錯誤,請重新輸入!", Toast.LENGTH_LONG).show();    }  }    });  }  //方法isPhoneNumberValid(String phoneNumber)用來判斷電話號碼的格式是否正確  public static boolean isPhoneNumberValid(String phoneNumber){   boolean isValid=false;/*** 用下面的字串規定電話格式如下:* ^\\(? 表示可使用(作為開頭* (\\d{3}) 表示緊接著3個數字* \\)? 表示可使用)繼續* [- ]? 表示在上述格式後可用具有選擇性的“-”繼續* (\\d{4}) 表示緊接著4個數字* [- ]? 表示可用具有選擇性的“-”繼續* (\\d{4})$ 表示以4個數字結束* 可以和下面的數字格式比較:* (123)456-78900  123-4567-8900  12345678900 (123)-456-78900*/   String expression01="^\\(?(\\d{3})\\)?[- ]?(\\d{4})[- ]?(\\d{4})$";   String expression02="^\\(?(\\d{3})\\)?[- ]?(\\d{3})[- ]?(\\d{5})$";   Pattern p01=Pattern.compile(expression01);//通過Pattern對象將電話格式傳入   Matcher m01=p01.matcher(phoneNumber);//檢查電話號碼的格式是否正確   Pattern p02=Pattern.compile(expression02);   Matcher m02=p02.matcher(phoneNumber);   if(m01.matches()||m02.matches()){   isValid=true;   }   return isValid;  }}

res/layout/main.xml如下:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="fill_parent"  android:layout_height="fill_parent"  android:orientation="vertical" >  <TextView    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="@string/hello" />  <Button    android:id="@+id/button"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    />  <EditText    android:id="@+id/et"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    /></LinearLayout>

AndroidManifest.xml如下:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"  package="com.my.a01"  android:versionCode="1"  android:versionName="1.0" >  <uses-sdk android:minSdkVersion="10" />  <application    android:icon="@drawable/ic_launcher"    android:label="@string/app_name" >    <activity      android:name=".A01Activity"      android:label="@string/app_name" >      <intent-filter>        <action android:name="android.intent.action.MAIN" />        <category android:name="android.intent.category.LAUNCHER" />      </intent-filter>    </activity>  </application>  <uses-permission android:name="android.permission.CALL_PHONE">  </uses-permission></manifest>

通過Button來撥打到電話,在onClick()方法中,自訂一個Intent,傳入ACTION_CALL與Uri.parse(),傳入的Uri資料中電話的首碼為“tel:”。

注意要添加撥打到電話的許可權android.permission.CALL_PHONE

可以使用Android.Action.Dialer方式android.intent.action.DIAL來調用虛擬鍵盤來撥打到電話。

用來檢驗輸入的電話號碼格式是否正確還有一個比較簡便的方法:在main.xml中的EditText的對象中,添加

android:phoneNumber="true"

即可限制輸入的資料必須為數字記號。

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android資源操作技巧匯總》《Android開發入門與進階教程》、《Android控制項用法總結》、《Android簡訊與電話操作技巧匯總》及《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》

希望本文所述對大家Android程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.