Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

phone call using intent in Android

String phone = "+34666777888";
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", phone, null));
startActivity(intent);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #phone #call #intent #Android
ADD COMMENT
Topic
Name
3+1 =