以编程方式在android中拨号栏

时间:2015-09-22 13:16:20

标签: android android-actionbar pjsip

我正在使用“pjsip”库开发Android应用程序,我将其集成到我的应用程序中并进行测试和拨打电话,我想在呼叫在后台时创建类似拨号栏的内容,我可以点击它显示了调用屏幕。 这是我使用的功能之一。

public void acceptCall(View view) {
        incomingCall = true;
        CallOpParam prm = new CallOpParam();
        prm.setStatusCode(pjsip_status_code.PJSIP_SC_OK);
        try {
            currentCall.answer(prm);
        } catch (Exception e) {
            System.out.println(e);
        }
        alphaAnimation = new AlphaAnimation(1.0f, 0.3f);
        alphaAnimation.setFillAfter(true);
        answer.startAnimation(alphaAnimation);

    }

0 个答案:

没有答案