Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 voip 项目开发 UI。我为拨号屏幕设计了一个 UI。是否可以在 android 项目中使用默认拨号屏幕?如果是,请提供链接以供参考。
如果您想使用手机的默认拨号器,只需使用以下代码
Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(Uri.parse("tel:" + "1234567890")); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);
您必须提及要拨打电话的号码。它将打开默认拨号屏幕