我面临一个奇怪的问题。
我在片段中有一个广播接收器,在登录过程完成时会收到通知。 该代码适用于所有手机,但不适用于三星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方法。 广播事件肯定会被发送。
有人可以帮助我。
由于