How to call android?

How can I call international mobile software when pressing textview in android?

+3
source share
1 answer

You can call any number using the following code:

String Numb = "tel:" + "your number";
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(Numb));
startActivity(intent);

enable the following permission:

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
+9
source

Source: https://habr.com/ru/post/1795687/


All Articles