Android:如何与默认联系人应用程序交互

发布于 2024-11-09 10:30:38 字数 194 浏览 0 评论 0原文

我是新手,试图编写一个代码,当用户选择联系人并点击呼叫按钮时,会向用户显示一个弹出对话框,其中有两个选择;具体来说,一种是使用标准拨号器进行呼叫,另一种只是用户的另一种选择。

但是,我什至不知道如何与默认联系人应用程序交互。我听说“sipdroid”有类似的应用程序,但仍然不知道。

如果有人知道如何做到这一点或有一个很好的教程,请帮助我吗?

I am new and trying to make a code that when a user selects a contact and hits the call button, the user is presented with a pop-up dialog that has two choices; In detail, one is to call using the standard dialer and another one is just another selection for the user.

However, I have no idea how to even interact with the default contacts application. I heard that 'sipdroid' has a similar application but still don't have any idea.

If anybody knows how to do it or has a good tutorial for this, would you please help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就像说晚安 2024-11-16 10:30:38

试试这个。

<activity android:label="@string/app_name" android:name=".YourActivity"
            android:screenOrientation="portrait" android:clearTaskOnLaunch="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER"></category>
                <category android:name="android.intent.category.DEFAULT"></category>
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.CALL_BUTTON"></action>
                <category android:name="android.intent.category.DEFAULT"></category>
            </intent-filter>


        </activity>

当您按下设备的通话按钮时,用户会看到两个选择..

1) in-built contacts.
2)your app

try this.

<activity android:label="@string/app_name" android:name=".YourActivity"
            android:screenOrientation="portrait" android:clearTaskOnLaunch="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER"></category>
                <category android:name="android.intent.category.DEFAULT"></category>
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.CALL_BUTTON"></action>
                <category android:name="android.intent.category.DEFAULT"></category>
            </intent-filter>


        </activity>

when you press call button of device then user see two choice ..

1) in-built contacts.
2)your app
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文