---
title: "How to call a number from our application?"  
description: "How to call a number from our application?"  
author: "Barbara Jones"  
published: 2014-11-15  
updated: 2014-11-15  
canonical: https://www.mindstick.com/forum/12591/how-to-call-a-number-from-our-application  
category: "android"  
tags: ["android sdk"]  
reading_time: 1 minute  

---

# How to call a number from our application?

call a number from our [application](https://www.mindstick.com/articles/12824/calculator-application-in-android)

## Replies

### Reply by David Miller

Intent callIntent = new Intent(Intent.ACTION_CALL);

callIntent.setData(Uri.parse("tel:123456789"));

startActivity(callIntent);

And remember add this CALL_PHONE permission to your Manifest:

<uses-permission android:name="android.permission.CALL_PHONE" />


---

Original Source: https://www.mindstick.com/forum/12591/how-to-call-a-number-from-our-application

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
