有没有办法在android中以编程方式在仪表板上添加紧急联系号码?

时间:2013-12-03 13:02:28

标签: android locking phone-call unlock

我想在应用程序中实现一项功能。用户可以在仪表板上添加任何紧急号码列表。该功能的目的是,如果有紧急情况,您可以拨打紧急号码(911)而无需解锁电话。

1 个答案:

答案 0 :(得分:1)

private void phoneCall()
{
 String phoneCallUri = "tel:92";
 Intent phoneCallIntent = new Intent(Intent.ACTION_CALL);
 phoneCallIntent.setData(Uri.parse(phoneCallUri));
 startActivity(phoneCallIntent);
}