Skip to content

Instantly share code, notes, and snippets.

@hoseinquest
Created May 18, 2015 07:57
Show Gist options
  • Save hoseinquest/706aef54ecb6d0ee19f9 to your computer and use it in GitHub Desktop.
Save hoseinquest/706aef54ecb6d0ee19f9 to your computer and use it in GitHub Desktop.
Android Dial
public void dial(String num){
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse("tel:" + Uri.encode(num.trim().toString())));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK) ;
startActivity(callIntent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment