CATEGORIES
>>
Dart(2)
>>
Errors(5)
>>
Android(11)
>>
Errors(1)
>>
Errors(2)
>>
Windows 8(3)
>>
iPhone7(1)
>>
Errors(4)
>>
Html(1)
RECOMMENDED SITES
Xamarin Android Check AutoTime date & time settings
Xamarin android check autotime, date & time settings.
SDK_NO >= 17
SDK_NO >= 17
public static bool IsAutoTimeEnabled(Context context)
{
int autoTimeInt = Android.Provider.Settings.Global.GetInt(context.ContentResolver, Android.Provider.Settings.Global.AutoTime);
return (autoTimeInt > 0);
}
SDK_NO <= 16
public static bool IsAutoTimeEnabled(Context context)
{
int autoTimeInt = Android.Provider.Settings.System.GetInt(context.ContentResolver, Android.Provider.Settings.System.AutoTime);
return (autoTimeInt > 0);
}
Author: Engin ATALAY
Date: 6.04.2020 13:30:05
View Count: 1462
COMMENTS
No comments yet. Be the first to comment who you are.