Reputation: 1881
I want to call a number from android with out using native call.Is that possible? like startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+constant.confitacth2)));
Upvotes: 1
Views: 305
Reputation: 10028
You can use an appropriate Intent to launch the Dialer. I believe the code you have written should work. Does it not?
Upvotes: 0