編輯:高級開發
本章列出了一個簡單的步驟來創建一個應用程序,它可以用來撥打電話。使用 Android 的 Intent 通過調用Android內置的電話通話功能。以下部分說明 Intent 對象的撥打電話功能 。
使用 ACTION_CALL 動作觸發Android設備內置電話功能。以下是簡單的語法用來創建一個Intent 的 ACTION_CALL 動作
Intent phoneIntent = new Intent(Intent.ACTION_CALL);
可以使用 ACTION_DIAL 動作,而不是 ACTION_CALL,在這種情況下,在使用選項來修改硬編碼的電話號碼撥打電話之前,而不是直接調用的。
這裡給定電話為 13800138000 撥打一個電話,需要使用setData()方法指定URI為 tel:如下:
phoneIntent.setData(Uri.parse("tel:13800138000"));
要注意的一點是,撥打電話不需要任何額外的數據或數據類型指定。
下面的示例演示如何在實際使用 Android Intent 打電話給定的手機號碼。
要嘗試這個例子中,需要實際配備了最新的 Android OS 移動設備,否則仿真器可能無法正常工作。
以下是修改主活動文件 src/com.yiibai.phonecalldemo/MainActivity.java 的內容如下:
package com.yiibai.phonecalldemo; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.util.Log; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button startBtn = (Button) findViewById(R.id.makeCall); startBtn.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { makeCall(); } }); } protected void makeCall() { Log.i("Make call", ""); Intent phoneIntent = new Intent(Intent.ACTION_CALL); phoneIntent.setData(Uri.parse("tel:91-800-001-0101")); try { startActivity(phoneIntent); finish(); Log.i("Finished making a call...", ""); } catch (android.content.ActivityNotFoundException ex) { Toast.makeText(MainActivity.this, "Call faild, please try again later.", Toast.LENGTH_SHORT).show(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }
下面是 res/layout/activity_main.xml 文件的內容:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <Button android:id="@+id/makeCall" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/make_call"/> </LinearLayout>
下面文件 res/values/strings.xml 的內容中定義兩個新的常量:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">PhoneCallDemo</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="make_call">Call 91-800-001-0101</string> </resources>
以下是AndroidManifest.xml 文件的默認內容:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.yiibai.phonecalldemo" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.CALL_PHONE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.yiibai.phonecalldemo.MainActivity" 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> </manifest>
我們嘗試運行PhoneCallDemo 應用程序。Eclipse AVD安裝的應用程序,並啟動它,如果一切設置和應用代碼都沒有問題,它會顯示以下模擬器窗口:
選擇移動設備作為一個選項,然後檢查移動設備,這將顯示以下畫面:
現在使用按鈕撥打138001380000,如下所示:
2010年5月20日在谷歌 I/O 2010大會上,android 2.2 Froyo正式發布。隨後在2010年12月7日夜1點,谷歌正式發布android 2.3 G
3.5 (Galileo).運行Eclipse 並選擇Help->Install New Software.在Available Software窗口中點擊Add
Google不做惡,蘋果要作惡?其實刪掉競爭對手的描述,其實也是一種合理的商業手段。只是這樣的要求,顯得蘋果有些不厚道,不知道Google怎麼反擊。iPad的發布,在5
隨著時代的進步科技的發展Dalvik虛擬機的版本也快速的提升與升級,下面我就對升級前和升級後的Dalvik虛擬機系統 ,做一下自己的解析android作為新一代的基於L