Android Question How to make call?

CodeBoyPVK

New Member
Hi, i have a button "btnCall" and i want that when we press it, we make a call on the number entered by user in "EditText".
Help me please. I'm newbie. Thank you...
 

imbault

Well-Known Member
Licensed User
Longtime User
B4X:
Sub btnCall_click
    Dim p As PhoneCalls
    StartActivity(p.Call(EditText.Text))
End Sub
 
Upvote 0

xpectmore

Member
Licensed User
Longtime User
is not need , thanks.you said you are newbie so i presume you can't create the project cause you buyed b4a today or less than 1 week so i put imbault's ideea in phone2.zip updating phone.zip . now i know too how to make a call ,i am freebie too in b4a ,but i have several years in programming in several languages other than b4a
 
Upvote 0
Top