Android 调用系统打紧急电话

ComponentName comp = new ComponentName("com.android.phone",
                    "com.android.phone.EmergencyDialer");
Intent intent = new Intent();
intent.setComponent(comp);
startActivity(intent);


你可能感兴趣的:(android,电话)