gpt4 book ai didi

Android 短信捕获

转载 作者:太空狗 更新时间:2023-10-29 13:42:55 26 4
gpt4 key购买 nike

我想开发这样一个应用程序。安装后,我将有两种选择,同时通过我的应用程序或默认短信应用程序发送短信。

有什么方法可以捕获外发短信吗?

最佳答案

您可以将以下 Intent 过滤器添加到您的 Activity 的 AndroidManifest.xml 描述中,这将允许用户在单击联系人和短信应用程序中的发送短信操作时选择您的应用程序以发送短信:

<intent-filter>
<action android:name="android.intent.action.SENDTO"></action>
<data android:scheme="smsto"></data>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>

这会以 smsto://target-number 的格式传递数据 uri,您的应用需要使用 SMSManager 处理文本输入和 SMS 发送。

关于Android 短信捕获,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3602597/

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