如何在 android 中使用默认拨号屏幕?
How to use default dialer screen in android?
我正在为 voip 项目开发 UI。我为拨号屏幕设计了一个UI。是否可以在 android 项目中使用默认拨号屏幕?如果是,请提供link参考。
如果您想使用 phone 的默认拨号器,只需使用以下代码
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" + "1234567890"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
您必须提供要拨打电话的号码。它将打开默认拨号器屏幕
我正在为 voip 项目开发 UI。我为拨号屏幕设计了一个UI。是否可以在 android 项目中使用默认拨号屏幕?如果是,请提供link参考。
如果您想使用 phone 的默认拨号器,只需使用以下代码
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" + "1234567890"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
您必须提供要拨打电话的号码。它将打开默认拨号器屏幕