[Android] take advantage of intent calls

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/sandalphon4869/article/details/100070575

Article Directory


Start with a similar browser into the Action Intent.ACTION_DIAL, Uri prefixes micro (within) setData tel:.

Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:10086"));
startActivity(intent);

Here Insert Picture Description

Guess you like

Origin blog.csdn.net/sandalphon4869/article/details/100070575