广播接收器不会收到意图

Broadcast Receiver won't receive intent

我正在尝试组合一个基本的 IntentService/BroadcastReceiver 组合。 是的,我知道目前没有什么用,但我只是想得到广播运行。 服务接收到我的初始意图,但接收方没有接收到 return 广播(调试器)。其他答案对我没有帮助,我觉得我已经尝试了一切。它必须是微不足道的,但我就是不能指手画脚。

正在显示 Activity:

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val filter = IntentFilter()
        filter.addAction(Constants.BROADCAST_ACTION)
        filter.addDataScheme("http")
        val dsl  = DownloadStateReceiver()
        LocalBroadcastManager.getInstance(this).registerReceiver(dsl,filter)

        buttonLogin.setOnClickListener({
            var loginIntent = Intent(this,RawRestJsonPull::class.java)
            loginIntent.putExtra("userName",editLogin.text.toString())
            loginIntent.putExtra("password",editPassword.text.toString())
            this.startService(loginIntent)

        })

    }

     class DownloadStateReceiver : BroadcastReceiver()
    {
        override fun onReceive(currentContext: Context, incomingIntent: Intent) {
            Log.d("?????","d")
        }

    }
}

服务和操作常量:

class RawRestJsonPull : IntentService("rest" ) {

    override fun onHandleIntent(incomingIntent: Intent) {
        var outgoingIntent = Intent(Constants.BROADCAST_ACTION)
        var status = 0
        var userName : String? = incomingIntent.getStringExtra("userName")
        var password : String? = incomingIntent.getStringExtra("password")

        outgoingIntent.putExtra(Constants.EXTENDED_DATA_STATUS,status).putExtra("userName",userName).
                putExtra("password",password)
        outgoingIntent.flags = Intent.FLAG_INCLUDE_STOPPED_PACKAGES
        LocalBroadcastManager.getInstance(this).sendBroadcast(outgoingIntent)
    }



}

class Constants
{
    companion object {
        val BROADCAST_ACTION = "com.example.hubert1224.xxx.BROADCAST"
        val EXTENDED_DATA_STATUS = "com.example.hubert1224.xxx.STATUS"
    }
}

清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.hubert1224.xxx">

    <uses-permission android:name="android.permission.INTERNET" />
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity
                android:name=".MainActivity"
                android:windowSoftInputMode="stateVisible">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
        <service android:name=".RawRestJsonPull" />

        <receiver android:name=".MainActivity$DownloadStateReceiver" />
    </application>

</manifest>

试试看

首先使您的 BroadcastReceiver 成为静态的或它自己的 class,我不确定 Android 是否可以使用非静态内部 classes。

其次,我不确定为什么您的接收器意图过滤器具有

filter.addDataScheme("http")

但是您从服务中触发的 Intent 中遗漏了它,如果您不需要它,请将其删除。

  1. 尝试从过滤器中删除数据方案 http。 2. 尝试将类别默认添加到过滤器。