歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

初學Android實現打電話的功能-使用Intent和AndroidManifset.xml中加入權限

初學Android實現打電話的功能-使用Intent和AndroidManifset.xml中加入權限。

自己剛剛閒著沒事做了一個很簡單的撥號器,初學

    步驟:

    一:布局文件先設計撥號器的簡單界面

   二 :Activity中進行獲取EditText中的電話號碼,然後點擊,使用Intent(意圖)進行實現打電話的功能

          Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
+ mobile));


   三:注意必須在AndroidManifset,xml文件進行打電話的權限設置 


    

 

Demo源代碼:

  1. package com.jiangqq.activity;  
  2. import android.app.Activity;  
  3. import android.content.Intent;  
  4. import android.net.Uri;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.widget.Button;  
  8. import android.widget.EditText;  
  9.   
  10. public class PhoneActivity extends Activity  
  11. {  
  12.     // 定義EditText   
  13.     private EditText mobileText;  
  14.   
  15.     @Override  
  16.     public void onCreate(Bundle savedInstanceState) {  
  17.         super.onCreate(savedInstanceState);  
  18.         setContentView(R.layout.main);  
  19.   
  20.         mobileText = (EditText) this.findViewById(R.id.mobile);  
  21.         Button button = (Button) this.findViewById(R.id.button);  
  22.   
  23.         // 使用匿名類進行加監聽   
  24.         button.setOnClickListener(new View.OnClickListener() {  
  25.             @Override  
  26.             public void onClick(View v) {  
  27.                 String mobile = mobileText.getText().toString();  
  28.                 // 使用系統的電話撥號服務,必須去聲明權限,在AndroidManifest.xml中進行聲明   
  29.                 Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"  
  30.                         + mobile));  
  31.                 PhoneActivity.this.startActivity(intent);  
  32.             }  
  33.         });  
  34.     }  
  35. }  
Copyright © Linux教程網 All Rights Reserved