1

我面临一个奇怪的问题。

我在片段中有一个广播接收器,当登录过程完成时会收到通知。该代码适用于所有手机,但不适用于三星 Galaxy S4。广播接收器根本没有收到任何消息。

private final BroadcastReceiver loginReceiver = new BroadcastReceiver() {

    @SuppressLint("CommitPrefEdits")
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (action != null) {
            if (UbiWebApiConstants.ACTION_LOGIN_COMPLETE.equals(action)) { 

根本不调用 onReceive 方法。肯定会发送广播事件。

有人可以帮我吗。

谢谢

4

0 回答 0