Android custom dialler on tapping phone number links

前端 未结 1 691
庸人自扰
庸人自扰 2021-01-27 01:46

I have to implement custom dialler application. Well it will not make regular phone call, instead it will connect to some service to estabilish VoIP connection. That is simple p

相关标签:
1条回答
  • 2021-01-27 02:36

    Tha answer for your question is:

     <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <action android:name="android.intent.action.DIAL" />
                <category android:name="android.intent.category.DEFAULT" /> 
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="tel" />
            </intent-filter>
    
    0 讨论(0)
提交回复
热议问题