gpt4 book ai didi

android - 如何在 Android 手机中制作我自己的自定义拨号器

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:55:38 25 4
gpt4 key购买 nike

在我的应用程序中,我添加了一个 Intent ,以便用户可以调用:

str="tel:"+phoneArray[11];  
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse(str));
startActivity(intent);

然后它从 Android 手机调用,但我想设置另一个具有不同外观的自定义拨号器。需要做什么?我的意思不是如何设计拨号器,而是如何制作一个可以输入号码并执行调用的 UI。

最佳答案

创建响应 Intent.ACTION_DIAL 的应用。在 AndroidManifest.xml 中,您需要将以下内容添加到该 Activity:

<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

你可以拿official phone app作为引用。但请注意,这不是一项微不足道的任务。

您只能用这种方式替换拨号器。无法更改实际通话内容(您在通话期间看到的内容)。

有关详细信息,请参阅 Stack Overflow 问题 Android dialer application .

关于android - 如何在 Android 手机中制作我自己的自定义拨号器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10303138/

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