如何为KitKat设置默认SMS提示

时间:2014-01-19 03:00:07

标签: android message android-4.4-kitkat

我创建了一个短信应用程序,可以正确显示所有邮件,还有一个BroadcastReceiver,可以帮助我在到达时告知新邮件。

使用URI的帮助content://mms-sms/conversations?simple=true我能够检索消息。

即使在KitKat上也能正常工作。我可以发送短信,阅读短信,但我无法删除短信,因为我的应用程序不是默认的短信应用程序。

问题:

如何提示用户使应用程序默认?我查看了this blog

我尝试了上面给出的代码,但我没有看到任何区别?我在这里错过了什么吗?

以下是代码:

 int currentapiVersion = android.os.Build.VERSION.SDK_INT;

    if (currentapiVersion >= 19)
    {
        final String myPackageName = getPackageName();
        if (!Telephony.Sms.getDefaultSmsPackage(this).equals(myPackageName)) 
        {
            // App is not default.
            // Show the "not currently set as the default SMS app" interface
            View viewGroup = findViewById(R.id.not_default_app);
            viewGroup.setVisibility(View.VISIBLE);

            // Set up a button that allows the user to change the default SMS app
            button.setOnClickListener(new View.OnClickListener() 
            {
                public void onClick(View v) 
                {
                    Intent intent =
                            new Intent(Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT);
                    intent.putExtra(Telephony.Sms.Intents.EXTRA_PACKAGE_NAME, 
                            myPackageName);
                    startActivity(intent);
                }
            });
        }
        else 
        {
            // App is the default.
            // Hide the "not currently set as the default SMS app" interface
            View viewGroup = findViewById(R.id.not_default_app);
            viewGroup.setVisibility(View.GONE);

        }
    }

等待您的回复! 谢谢!

1 个答案:

答案 0 :(得分:5)

我通过在清单中输入以下内容来解决。

最重要的部分我们应该使用一切,包括MMS部分,如果不是它将无效。

                                                     

<!-- Activity that allows the user to send new SMS/MMS messages -->
<activity android:name=".ComposeSmsActivity" >
    <intent-filter>
        <action android:name="android.intent.action.SEND" />
        <action android:name="android.intent.action.SENDTO" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="sms" />
        <data android:scheme="smsto" />
        <data android:scheme="mms" />
        <data android:scheme="mmsto" />
    </intent-filter>
</activity>

<!-- Service that delivers messages from the phone "quick response" -->
<service android:name=".HeadlessSmsSendService"
         android:permission="android.permission.SEND_RESPOND_VIA_MESSAGE"
         android:exported="true" >
    <intent-filter>
        <action android:name="android.intent.action.RESPOND_VIA_MESSAGE" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:scheme="sms" />
        <data android:scheme="smsto" />
        <data android:scheme="mms" />
        <data android:scheme="mmsto" />
    </intent-filter>
</service>