Android: How to make a phone call
A very useful feature in Android is that you can use the built in Android Application to make phone calls from inside the Application. You can also use the TelephonyManager
and a PhoneStateListener
in order to monitor the phone state.
For this tutorial, we will use the following tools in a Windows 64-bit platform:
- JDK 1.7
- Eclipse 4.2 Juno
- Android SKD 4.2
1. Create a new Android Project
Open Eclipse IDE and go to File -> New -> Project -> Android -> Android Application Project and click Next.
You have to specify the Application Name, the Project Name and the Package name in the appropriate text fields and then click Next.
In the next window make sure the “Create activity” option is selected in order to create a new activity for your project, and click Next. This is optional as you can create a new activity after creating the project, but you can do it all in one step.
Select “BlankActivity” and click Next.
You will be asked to specify some information about the new activity. In the Layout Name text field you have to specify the name of the file that will contain the layout description of your app. In our case the file res/layout/main.xml
will be created. Then, click Finish.
2. Create the main Layout of the Application
Open res/layout/main.xml
file :
And paste the following code :
<?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" > <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Call 123456" /> </LinearLayout>
3. Set Permissions in AndroidManifest.xml
Go to AndroidManifest.xml
And paste the following code in order to set the appropriate permission for the Application:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.javacodegeeks.android.androidphonecallexample" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16" /> <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.javacodegeeks.android.androidphonecallexample.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>
In the above code we have set up the permission to make a phone call from our Application as well as the permission to monitor the phone state with the lines below:
<uses-permission android:name="android.permission.CALL_PHONE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" />
4. Code
Go to the java file that contains the code of the activity you’ve just created:
And paste the following code:
package com.javacodegeeks.android.androidphonecallexample; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.telephony.PhoneStateListener; import android.telephony.TelephonyManager; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity { final Context context = this; private Button btn; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); btn = (Button) findViewById(R.id.button); PhoneCallListener phoneCallListener = new PhoneCallListener(); TelephonyManager telManager = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE); telManager.listen(phoneCallListener, PhoneStateListener.LISTEN_CALL_STATE); // add button listener btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { Intent phoneCallIntent = new Intent(Intent.ACTION_CALL); phoneCallIntent.setData(Uri.parse("tel:123456")); startActivity(phoneCallIntent); } }); } // monitor phone call states private class PhoneCallListener extends PhoneStateListener { String TAG = "LOGGING PHONE CALL"; private boolean phoneCalling = false; @Override public void onCallStateChanged(int state, String incomingNumber) { if (TelephonyManager.CALL_STATE_RINGING == state) { // phone ringing Log.i(TAG, "RINGING, number: " + incomingNumber); } if (TelephonyManager.CALL_STATE_OFFHOOK == state) { // active Log.i(TAG, "OFFHOOK"); phoneCalling = true; } // When the call ends launch the main activity again if (TelephonyManager.CALL_STATE_IDLE == state) { Log.i(TAG, "IDLE"); if (phoneCalling) { Log.i(TAG, "restart app"); // restart app Intent i = getBaseContext().getPackageManager() .getLaunchIntentForPackage( getBaseContext().getPackageName()); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i); phoneCalling = false; } } } } }
Let’s take a closer look to the above code. Notice that when we press the button the built in phone Application launches:
Intent phoneCallIntent = new Intent(Intent.ACTION_CALL); phoneCallIntent.setData(Uri.parse("tel:123456")); startActivity(phoneCallIntent);
We also take the TelephonyManager
of our Application with : this.getSystemService(Context.TELEPHONY_SERVICE)
and we register a PhoneStateListener
to it in order to monitor the phone state. Now the PhoneStateListener
will leave log messages in LogCat that reflect the state of the phone. When a call ends the main Activity of the Application launches again.
5. Run the application
This is the main screen of our Application:
When you tap in the button the built in phone Application launches:
Now when you cancel the call, the main Activity of our Application will be launched again so we will go back to the main screen.
Download Eclipse Project
This was an Android Phone Call Example. Download the Eclipse Project of the first part of this tutorial: AndroidPhoneCallExample.zip