Android 電話相關架構及原始碼分析和學習

來源:互聯網
上載者:User

分析com.android.internal.telephony,這是android系統內部實現的一些類。

1、ITelephony.aidl

 

interface ITelephony

/**
 * Interface used to interact with the phone.  Mostly this is used by the
 * TelephonyManager class.  A few places are still using this directly.
 * Please clean them up if possible and use TelephonyManager insteadl.

 */

這是一個介面,提供了一些和phone互動的一些函數,沒有實現具體的功能比如:

void dial(String number);

 void call(String number);

boolean showCallScreen();

等等

 

從import語句:import android.telephony.NeighboringCellInfo來看,這個介面還使用了NeighboringCellInfo,因為ITelephony介面提供了下面這個函數方法:

/**
     * Returns the neighboring cell information of the device.
     */
    List<NeighboringCellInfo> getNeighboringCellInfo();

 

 

com.android.phone

 

1、PhoneInterfaceManager.java

 

public class PhoneInterfaceManager extends ITelephony.Stub

 

/**
 * Implementation of the ITelephony interface.
 */

 

這個類是對ITelephony中所有方法的實現,同時也添加了一些處理phone訊息的方法。

 

2、PhoneUtils.java

 

/**
 * Misc utilities for the Phone app.
 */
public class PhoneUtils

 

主要提供了phone應用程式中所要使用的各種utilities

 

 

3、PhoneApp.java

 

/**
 * Top-level Application class for the Phone app.
 */
public class PhoneApp extends Application

 

這個類是最上層應用程式類。

 

4、BluetoothAtPhonebook.java

 

/**
 * Helper for managing phonebook presentation over AT commands
 * @hide
 */
public class BluetoothAtPhonebook

 

通過AT命令提供電話本的管理

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.