本文介绍了如何检查"自动日期和时间"已启用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要检查在Android设备的自动日期和时间是否启用。如果没有启用,我需要显示弹出式,它未启用。
I need to check whether "Automatic date and time" in the android device is enabled or not. If it is not enabled I need to display the popup that it is not enabled.
是否有可能实现的。如果可能的话,如何检查启用与否?
Is it possible to achieve. If possible, how to check enabled or not ?
推荐答案
android.provider.Settings.Global.getInt(getContentResolver(), android.provider.Settings.Global.AUTO_TIME, 0);
android.provider.Settings.System.getInt(getContentResolver(), android.provider.Settings.System.AUTO_TIME, 0);
这篇关于如何检查"自动日期和时间"已启用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!