0

我们创建一个 html 代码来使用这个从 WL 应用程序内部拨打电话

document.location.href = 'tel:'+ phoneNumber;

一开始似乎是在工作,即启动拨号器,拨打电话,当电话结束时,它意味着回到原来的WL应用程序,但是它从头重新启动了WL应用程序,从初始屏幕启动它,这不是所需的行为,因为预计在拨号程序完成后,它会立即返回到拨号程序启动之前的 WL 应用程序。

关于如何解决这个问题的任何想法?

4

2 回答 2

0

不确定是否所有步骤都是必要的..但​​它就在这里。

1) 声明您的活动 singleInstance android:launchMode="singleInstance"

2)将此代码添加到您的活动中

private PhoneStateListener callListener;

@Override
public void onCreate(Bundle savedInstanceState) {

    callListener = new EndCallListener();
    ...
}

private class EndCallListener extends PhoneStateListener {

    private final String LOG_TAG = "EndCallListener";

    private boolean isPhoneCalling = false;

    @Override
    public void onCallStateChanged(int state, String incomingNumber) {

        if (TelephonyManager.CALL_STATE_RINGING == state) {
            Log.i(LOG_TAG, "RINGING, number: " + incomingNumber);
            // finish();
        }
        if (TelephonyManager.CALL_STATE_OFFHOOK == state) {
            // wait for phone to go offhook (probably set a boolean flag) so
            // you know your app initiated the call.
            Log.i(LOG_TAG, "OFFHOOK");
            isPhoneCalling = true;
        }
        if (TelephonyManager.CALL_STATE_IDLE == state) {
            // when this state occurs, and your flag is set, restart your
            // app
            Log.i(LOG_TAG, "IDLE");
            if (TelephonyManager.CALL_STATE_IDLE == state) {
                // run when class initial and phone call ended,
                // need detect flag from CALL_STATE_OFFHOOK
                Log.i(LOG_TAG, "IDLE");

                if (isPhoneCalling) {

                    Log.i(LOG_TAG, "restart app");

                    // restart app
                    Intent i = getBaseContext().getPackageManager()
                            .getLaunchIntentForPackage(
                                    getBaseContext().getPackageName());
                    // i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                    i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
                    startActivity(i);

                    isPhoneCalling = false;
                }

            }
        }
    }
}

3)在你的 manifest.xml

<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
于 2013-09-23T19:24:12.087 回答
0

您现在的做法是用 tel URL 替换 worklight 应用程序。您需要在其自己的窗口中启动 URL。

利用:

window.open("tel:5551212");

这将暂停应用程序并启动手机。当您退出手机时,应用程序将恢复。

于 2013-09-25T00:29:33.077 回答