如何在iPad上拨打和接听电话

Making and answering calls on your iPad is a little-known feature that can be pretty amazing in use, and all you need is to have your tablet and your iPhone near one another. Thanks to the magic of Apple’s Continuity features, handling calls on an iPad is one of those features that you might forget exists, but can be handy if you already have your tablet in front of you.

在iPad上拨打和接听电话是一项鲜为人知的功能,在使用中可能会非常惊人,而您所需要的只是让平板电脑和iPhone彼此靠近。 得益于Apple Continuity功能的神奇之处,在iPad上处理呼叫是您可能会忘记存在的那些功能之一,但是如果您已经将平板电脑放在自己的面前,就可以派上用场。

开始之前 (Before You Get Started)

If you want to use your iPad as a big phone, you’ll need to have a couple of prerequisites ticked off before getting started. You’ll need to have an iPhone and iPad that are:

如果您想将iPad用作大型手机,则需要先满足一些先决条件,然后再开始使用。 您需要拥有以下iPhone和iPad:

  • Connected to the same Wi-Fi network.

    已连接到同一Wi-Fi网络。
  • Logged into the same iCloud account in Settings.

    在“设置”中登录到相同的iCloud帐户。
  • Running iOS 8.1 or later, which shouldn’t be too hard at this point.

    运行iOS 8.1或更高版本,这在当时并不难。

Assuming all of those boxes are checked, let’s move on.

假设所有这些框均已选中,让我们继续。

如何告诉您的iPhone您的iPad (How to Tell Your iPhone About Your iPad)

If you’re going to have your calls routed to and from your iPad, you need to make sure that your iPhone knows that’s the plan. You only need to flick a couple of switches, and they’re both easy to find. Start by opening the Settings app and then tapping on the “Phone” entry.

如果您要将呼叫路由到iPad或从iPad路由,则需要确保iPhone知道这是计划。 您只需要轻击几个开关,它们都很容易找到。 首先打开“设置”应用,然后点击“电话”条目。

Next, tap “Calls on Other Devices” and turn on the “Allow Calls on Other Devices” toggle. This will reveal a list of the devices that are signed into your Apple ID. Make sure that you enable any device on which you want to make or answer calls—like your iPad.

接下来,点击“在其他设备上通话”,然后打开“在其他设备上通话”开关。 这将显示已登录您的Apple ID的设备列表。 确保启用要在其上拨打或接听电话的任何设备,例如iPad。

Once this is done, you’re ready to move on to your iPad.

完成此操作后,您就可以继续使用iPad。

如何在iPad上启用呼叫 (How to Enable Calls on Your iPad)

Now that your iPhone is all set up, open the Settings app on your iPad and tap the “FaceTime” entry.

既然您的iPhone已全部设置完毕,请在iPad上打开“设置”应用程序,然后点击“ FaceTime”条目。

Turn on the “Calls from iPhone” toggle. It’s likely that this setting is already enabled, but it’s worth checking to be sure.

打开“来自iPhone的呼叫”开关。 此设置可能已启用,但是值得确认一下。

Now, whenever you receive a call you can answer it on your iPad by tapping the “Answer” button.

现在,每当您接到电话时,都可以通过点击“应答”按钮在iPad上接听电话。

如何从iPad拨打电话 (How to Make a Call From Your iPad)

To make a call from your iPad, first, open the Contacts app (since there’s no Phone app). Next, tap the name of the contact you want to call.

要通过iPad拨打电话,请首先打开“通讯录”应用(因为没有“电话”应用)。 接下来,点击您要呼叫的联系人的姓名。

On the contact’s page, tap the blue “call” button below their name. Alternatively, tap the phone number you want to call.

在联系人页面上,点击联系人姓名下方的蓝色“通话”按钮。 或者,点击您要拨打的电话号码。

That’s all there is to it. Congratulations, you just turned your iPad into the world’s largest phone.

这里的所有都是它的。 恭喜,您刚刚将iPad变成了世界上最大的手机。

翻译自: https://www.howtogeek.com/395348/how-to-make-and-answer-calls-on-an-ipad/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要实现Java电话接听功能,需要使用到Java中的音频处理库和电话硬件设备,一般情况下需要用到Java内置的javax.sound包和jTAPI API。下面是一个简单的示例代码,用于演示如何使用Java API进行电话接听: ```java import javax.sound.sampled.*; import javax.telephony.*; import javax.telephony.events.*; public class PhoneListener implements ProviderObserver, TerminalObserver, CallObserver { private Provider provider; private Terminal terminal; private Call call; private AudioFormat audioFormat; private TargetDataLine targetDataLine; public PhoneListener() { // 初始化音频格式 audioFormat = new AudioFormat(8000, 16, 1, true, false); // 获取电话系统提供商 provider = JtapiPeerFactory.getJtapiPeer(null).getProvider("provider地址"); // 注册观察者 provider.addObserver(this); } public void providerChangedEvent(ProviderEvent event) { if (event instanceof ProviderInServiceEv) { // 选择一个终端设备,这里使用默认终端 terminal = provider.getTerminal(provider.getTerminalNames()[0]); try { // 打开终端 terminal.open(); // 监听来电事件 terminal.addCallObserver(this); } catch (Exception e) { e.printStackTrace(); } } } public void callChangedEvent(CallEv event) { Call call = event.getCall(); try { if (event.getID() == CallEv.CALL_ACTIVE) { // 接听电话 call.answer(); // 开始录音 targetDataLine = (TargetDataLine) AudioSystem.getLine(new DataLine.Info(TargetDataLine.class, audioFormat)); targetDataLine.open(audioFormat); targetDataLine.start(); // 将录音数据发送到电话线路 call.getTerminalConnection().getStreamConnection(Direction.SEND).getOutputStream().write(targetDataLine.getBytePosition()); } else if (event.getID() == CallEv.CALL_DISCONNECTED) { // 挂断电话 call.disconnect(); // 停止录音 targetDataLine.stop(); targetDataLine.close(); } } catch (Exception e) { e.printStackTrace(); } } } ``` 以上示例代码仅供参考,具体的实现方式需要根据实际情况进行调整。同时,在使用Java API进行电话接听时,需要注意保持良好的代码风格和编码规范,提高代码的可读性和可维护性。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值