gpt4 book ai didi

android - 解锁屏幕时启动服务

转载 作者:行者123 更新时间:2023-11-29 14:50:58 25 4
gpt4 key购买 nike

解锁屏幕后如何启动服务?可能是 AlarmAanger 之类的东西!

context.startService(new Intent(context, Widget.class));

最佳答案

为了检测屏幕打开和屏幕关闭,注册一个广播接收器,如:

AndroidManifest.xml:

 <receiver android:name="receiverScreen">
<intent-filter>
<action android:name="android.intent.action.SCREEN_ON" />
<action android:name="android.intent.action.SCREEN_OFF" />
<action android:name="android.Intent.ACTION_USER_PRESENT" />
</intent-filter>
</receiver>

在 Activity 或服务中:

 try {
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);

filter.addAction(Intent.ACTION_SCREEN_OFF);
filter.addAction(Intent.ACTION_USER_PRESENT);

BroadcastReceiver mReceiver = new receiverScreen();

registerReceiver(mReceiver, filter);
} catch (Exception e) {

}

如果屏幕打开/关闭,系统会通知您的接收代码:

public class receiverScreen extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {

if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)){

}
if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)){

}
if (intent.getAction().equals(Intent.ACTION_USER_PRESENT)){

}
}

}

关于android - 解锁屏幕时启动服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18037397/

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