> For the complete documentation index, see [llms.txt](https://progjh.gitbook.io/today-i-learned/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://progjh.gitbook.io/today-i-learned/root/android/intent.md).

# Intent

## 통화 다이얼화면까지 이동하 Intent

```
// phoneUri 포맷 - tel:XXXXXXXXX
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(phoneUri));
mContext.startActivity(intent);
```
