gpt4 book ai didi

android - android 4.0.3 (ICS) 上的 BroadcastReceivers

转载 作者:行者123 更新时间:2023-11-30 04:11:28 26 4
gpt4 key购买 nike

一段时间以来,我一直在尝试在 ICS 上使用 BroadcastReceiver。我尝试了各种解决方案,但对我没有任何效果。

这是我的 list 文件的样子...

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sp.android"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="15" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".XYZActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver android:name=".ScreenOffReceiver">
<intent-filter>
<action android:name="android.intent.action.SCREEN_OFF" />
</intent-filter>
</receiver>
</application>

</manifest>

这是我的接收者代码...

package com.sp.android;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

public class ScreenOffReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context arg0, Intent arg1) {
Log.e("AppSearch", "Message");
}
}

Activity 类中有一些代码。但是现在这个广播接收器似乎永远不会被注册。 onReceive() 方法不会被调用。我找不到任何解决方案。所有线程都提到我需要至少进行一项 Activity ,但我已经有了。

提前致谢!

最佳答案

您还需要至少启动一次 Activity (通过启动器),否则您的应用将处于“已停止”状态,并且不会收到任何广播。

关于android - android 4.0.3 (ICS) 上的 BroadcastReceivers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10794639/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com