gpt4 book ai didi

android - 手机关机的时间戳?

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:07 26 4
gpt4 key购买 nike

对于 Android 设备,是否有任何方法可以找出设备关闭的时间(或时间戳)?

最佳答案

我认为没有任何预定义的支持。但是,使用您的自定义逻辑很容易完成此操作。您需要做的就是定义一个 BroadcastReceiver 来监听 Intent android.intent.action.ACTION_SHUTDOWN。一旦它收到 Intent ,只需将当前的 Date 保存在 SharedPreferencesSQLite 或您想要的任何地方。稍后,手机开机,读取​​保存的值即可知道手机关机的预计时间。例如:

收件人代码:

public class ShutdownReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
//save the date here
}
}

并且在AndroidManifest.xml

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

关于android - 手机关机的时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12891840/

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