Hi
I'm using this solution:
Dim p As PhoneCalls
StartActivity(p.Call("phonenumber"))
End If
1. Question one :
Does Google allow the use of this method after obtaining your consent?
Is it better to use this method:
Dim i As Intent
i.Initialize("android.intent.action.DIAL", "tel:" & "Phonenumber")
StartActivity(i)
2. Question two:
If a phone call has already been established, I would like the dialer activity to be reduced so that the user can use the application normally.
How to do this....?