如何从一个Android应用程序启动Viber的电话吗?应用程序、电话、Android、Viber

2023-09-13 00:36:15 作者:演绎下一场离别

我开发一个Android应用程序,此外其他功能它必须能够拨打电话使用Viber的。我试图用solution为Skype 但没有成功。这是我得到的错误是:

I am developing an Android application, and besides other functionalities it has to be able to place a call using Viber. I tried to use solution for Skype but without success. Error which I get is:

05-08 19:51:51.660: D/AndroidRuntime(29140): Shutting down VM
05-08 19:51:51.660: W/dalvikvm(29140): threadid=1: thread exiting with uncaught exception (group=0x40018578)
05-08 19:51:51.680: E/AndroidRuntime(29140): FATAL EXCEPTION: main
05-08 19:51:51.680: E/AndroidRuntime(29140): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=viber:0692155555 }
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.app.Activity.startActivityForResult(Activity.java:2827)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.app.Activity.startActivity(Activity.java:2933)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at rs.stanar.pantaxinovisad.MainActivity.call(MainActivity.java:61)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at rs.stanar.pantaxinovisad.MainActivity.onClick(MainActivity.java:117)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.view.View.performClick(View.java:2485)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.view.View$PerformClick.run(View.java:9080)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.os.Handler.handleCallback(Handler.java:587)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.os.Handler.dispatchMessage(Handler.java:92)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.os.Looper.loop(Looper.java:130)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at android.app.ActivityThread.main(ActivityThread.java:3687)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at java.lang.reflect.Method.invokeNative(Native Method)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at java.lang.reflect.Method.invoke(Method.java:507)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
05-08 19:51:51.680: E/AndroidRuntime(29140):    at dalvik.system.NativeStart.main(Native Method)

$ C $我的应用程序,我想用它来调用的Viber的c是:

Code of my app that I am trying to use to invoke Viber is:

public void call(String dialNumber) {
        Intent viber = new Intent("android.intent.action.VIEW");
        viber.setData(Uri.parse("viber:" + dialNumber));
        startActivity(viber);
    }

  <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:scheme="viber" />
        </intent-filter>
        <intent-filter
            android:priority="0" >
            <action android:name="android.intent.action.CALL_PRIVILEGED" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:scheme="tel" />
        </intent-filter>

我应该怎么做才能使这项工作?

推荐答案

与这片code,此问题已得到解决:

This problem was resolved with this piece of code:

public void call(String dialNumber) {
    try{
    Intent callIntent = new Intent("android.intent.action.CALL_PRIVILEGED");
    callIntent.setData(Uri.parse("tel:" + dialNumber));
    startActivity(callIntent);
    }
    catch (Exception e) {
        Intent callIntent = new Intent(Intent.ACTION_CALL);
        callIntent.setData(Uri.parse("tel:" + dialNumber));
        startActivity(callIntent);
    }
}

在那里,这是至关重要的:android.intent.action.CALL_PRIVILEGED

在应用此之后,新窗口打开,为呼吁通过放置调用一切可能的方式进行 - 在这种特殊情况下,他们是拨号和Viber的和Skype(或更高版本添加任何其他方式)

After applying this, new window was opened offering for call to be made by all possible means for placing call - in this particular case, they were Dialer and Viber and Skype (or any other method added later).