Intent: ACTION_VIEW phone

Cor

Active Member
Licensed User
Longtime User
Is there something similar for the phone intent

When I use phonecalls , it takes a time to start the activity

StartActivity(phoneCall.Call(telefoon))


B4X:
dim i as intent

i.Initialize(i.ACTION_VIEW, "sms:" & tel)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
1. You should have started a new thread for this question.
2. Post #2 is wrong. All PhoneCalls do is to create the exact same intent.
3. If you want to send an email with an intent then you need to use the Email object from Phone library.
4. Most of the intents are described here: http://developer.android.com/reference/android/content/Intent.html
 
Upvote 0

Ajay Kakar

Member
Licensed User
Longtime User
Thanks Erel. I also made the post as a thread. and got a reply to it also which gave me the answer for sending an Email.. I had to use "mailto" in place of "tel"
 
Upvote 0
Top