How to get phone number from an incoming call?

后端 未结 7 1446
太阳男子
太阳男子 2020-11-27 13:45

How do I get the phone number when there is an incoming call in Android?

相关标签:
7条回答
  • 2020-11-27 14:31

    The answers above are right, but, don't forget about permissions
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />

    NOTE, starting form Android 9 to read incoming call number you have to request this permission
    <uses-permission android:name="android.permission.READ_CALL_LOG" />

    0 讨论(0)
提交回复
热议问题