gpt4 book ai didi

android - 在 Android 屏幕关闭时接收事件和 Intent

转载 作者:太空狗 更新时间:2023-10-29 13:20:01 25 4
gpt4 key购买 nike

我需要一个服务来处理屏幕关闭时的事件,例如接收延迟消息(使用处理程序)和互联网连接状态更改。

服务是否有可能在不永久使用 PARTIAL_WAKE_LOCK 的情况下获取这些信号,因为我不需要服务一直运行?

最佳答案

您需要BroadcastReceivers 来接收不同的状态。有关详细信息,请参阅 Android 文档

http://developer.android.com/reference/android/content/BroadcastReceiver.html

又比如,你可以引用这里https://www.grokkingandroid.com/android-getting-notified-of-connectivity-changes/提供的示例链接中的一些 fragment

registerReceiver(
new ConnectivityChangeReceiver(),
new IntentFilter(
ConnectivityManager.CONNECTIVITY_ACTION));

BroadcastReceiver 实现

public class ConnectivityChangeReceiver
extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
debugIntent(intent, "grokkingandroid");
}

private void debugIntent(Intent intent, String tag) {
Log.v(tag, "action: " + intent.getAction());
Log.v(tag, "component: " + intent.getComponent());
Bundle extras = intent.getExtras();
if (extras != null) {
for (String key: extras.keySet()) {
Log.v(tag, "key [" + key + "]: " +
extras.get(key));
}
}
else {
Log.v(tag, "no extras");
}
}

}

正如 StenSoft 所建议的,您可以使用 AlarmManager 来延迟消息或任何其他调度任务。我使用了下面的示例及其工作

public class Alarm extends BroadcastReceiver 
{
@Override
public void onReceive(Context context, Intent intent)
{
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "");
wl.acquire();

// Put here YOUR code.
Toast.makeText(context, "Alarm !!!!!!!!!!", Toast.LENGTH_LONG).show(); // For example

wl.release();
}

public void SetAlarm(Context context)
{
AlarmManager am =( AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(context, Alarm.class);
PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000 * 60 * 10, pi); // Millisec * Second * Minute
}
}

关于android - 在 Android 屏幕关闭时接收事件和 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30104984/

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