gpt4 book ai didi

android - 即使手机关机也能处理应用程序的解决方案

转载 作者:行者123 更新时间:2023-11-29 00:18:19 25 4
gpt4 key购买 nike

我想知道当用户使用应用程序时是否有处理 android 手机关机/意外关机的规定/解决方案。
一种可能的解决方案似乎是为 BATTERY_LOW 注册一个广播接收器.还有其他好的有效解决方案吗?

最佳答案

您的广播接收器...

public class ShutdownReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
//handle your stuff
}
}

最后是你的 list ..

<uses-permission android:name="android.permission.DEVICE_POWER" />
<receiver android:name=".ShutdownReceiver">
<intent-filter>
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
</intent-filter>
</receiver>

对于某些设备,这也是必需的

android.intent.action.QUICKBOOT_POWEROFF

关于android - 即使手机关机也能处理应用程序的解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24850756/

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