gpt4 book ai didi

android - 按 Intent 更改android拨号器

转载 作者:行者123 更新时间:2023-11-29 20:13:56 25 4
gpt4 key购买 nike

想要实现自己的dialer activity,但不知道如何显示chooser,用户可以在其中选择我的应用作为拨号程序。找到数十亿个链接如何接听电话或打开 chooser 这样的:link

但这不适合我。选择后只需要显示选择器拨号器对话框而不调用电话。只需选择默认拨号器即可。这是真的吗?将很高兴任何链接或建议。

最佳答案

在您的 list 文件中使用这段代码来选择您的应用程序作为拨号器的用户

<activity
android:name="com.sample.MyDailer"
android:label="@string/mycall" >
<intent-filter>
<action android:name="android.intent.action.CALL" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.CALL_PRIVILEGED" />
<data android:scheme="tel" />
</intent-filter>

关于android - 按 Intent 更改android拨号器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34350930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com