我的
Android应用使用短信静默发送通知.在Kitkat之前,这些通知未记录到SMS提供程序中,因此未出现在用户的对话列表中.这是应用程序所需的行为.
随着Kitkat SMS更改(请参阅下面引用的SmsManger文档),这些消息仍在发送,但现在会自动写入SMS提供程序,从而显示在用户的会话列表中.这不适合我的应用.
Beginning with Android 4.4 (API level 19),if and only if an app is not selected as the default SMS app,the system automatically writes messages sent using this method to the SMS Provider (the default SMS app is always responsible for writing its sent messages to the SMS Provider). For information about how to behave as the default SMS app,see Telephony.
听起来我可以通过将我的应用程序设为默认值然后不写入提供程序来阻止自动写入提供程序.但是,在我的应用程序环境中,这将是一个糟糕的用户体验,因此我只会将其视为绝对的最后手段.
我的问题是 – 有没有办法在Kitkat中静默发送短信而我的应用程序不必是默认应用程序?
我已经阅读了对这个问题Send SMS message using non default SMS app on Android 4.4的回复,但更关心的是确保将消息写入提供者.我不希望这样.