android.telecom.Call 的 deflect 方法有什么作用?

Ily*_*man 5 android

我不明白偏转方法的文档,如果可以的话,请您用更好的语言和示例向我解释一下。

/**
 * Instructs this {@link #STATE_RINGING} {@code Call} to deflect.
 *
 * @param address The address to which the call will be deflected.
 */
public void deflect(Uri address) {
    mInCallAdapter.deflectCall(mTelecomCallId, address);
}
Run Code Online (Sandbox Code Playgroud)