try {
2 Intent intent = new Intent(Intent.ACTION_CALL);
3 intent.setData(Uri.parse("tel:+110"));
4 startActivity(intent);
5} catch (Exception e) {
6 Log.e("SampleApp", "Failed to invoke call", e);
7}
转载请注明原文地址: https://ibbs.8miu.com/read-2262720.html