如何在android中将呼叫从一个号码重定向到另一个号码

发布于 2024-12-18 08:23:43 字数 76 浏览 3 评论 0原文

如何在 android 中将呼叫从一个号码重定向到另一个号码。 (例如:如果第一个号码已关闭,那么如何将呼叫切换到同一个人的另一个号码)

How to redirect calls from one number to another in android.
(Ex: if first number is switched off then how to switch a call to another number of a same person)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离去的眼神 2024-12-25 08:23:43
String callForwardString = "**21*1234567890#";    
Intent intentCallForward = new Intent(Intent.ACTION_DIAL); // ACTION_CALL                               
Uri uri2 = Uri.fromParts("tel", callForwardString, "#"); 
intentCallForward.setData(uri2);                                
startActivity(intentCallForward); 

这就是您可能正在寻找的。然而,这仅适用于 GSM。另外您需要在实际手机上尝试,不确定它是否可以在模拟器上运行

String callForwardString = "**21*1234567890#";    
Intent intentCallForward = new Intent(Intent.ACTION_DIAL); // ACTION_CALL                               
Uri uri2 = Uri.fromParts("tel", callForwardString, "#"); 
intentCallForward.setData(uri2);                                
startActivity(intentCallForward); 

This is what u might be looking for. However, this will work for GSM only. Also you need to try on actual handset, not sure whether it will work on Emulator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文