🤔
TIL
  • README
  • root
    • Android
      • TextView
      • Intent
      • RecyclerView
      • ImageView
      • Style
      • Activity
      • Databinding
      • EditText
      • RxJava
      • Fragment
    • Code
      • 가장 많은 정보를 가진 객체
    • Shell
      • script
        • 초기 설정
        • 기본 문법
      • chmod
  • Blog
  • Github
Powered by GitBook
On this page

Was this helpful?

  1. root
  2. Android

Intent

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

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

Last updated 5 years ago

Was this helpful?