Android 系统时间设置

本文提供了一套自动设定设备时间、时区、24小时制显示等操作的方法,包括如何获取和设置自动时间、自动时区、时间格式(24小时/12小时制)、获取与设置时区ID以及系统时间与日期的调整。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、自动确定时间

    /**
     * Get if the user prefers the date, time and timezone to be automatically fetched from the network 
     * @param context Context
     * @return ture=yes, false=no
     */
    public static boolean getTimeSettingAuto(Context context) {
        //Settings.System.AUTO_TIME was deprecated in API level 17.
        //Use Settings.Global.AUTO_TIME instead.
        int state = Settings.System.getInt(context.getContentResolver(), Settings.System.AUTO_TIME, 1);
        return (state == 1) ? true : false;
    }
    
    public static void setTimeSettingAuto(Context context, boolean isAuto) {
        Settings.System.putInt(context.getContentResolver(), Settings.System.AUTO_TIME, (isAuto ? 1 : 0));
    }


二、自动确定时区 (API11开始生效)

    /**
     * Get if the user prefers the timezone to be automatically fetched from the network 
     * @param context Context
     * @return ture=yes, false=no
     */
    public static boolean getTimezoneSettingAuto(Context context) {
        //Settings.System.AUTO_TIME_ZONE was useful from API 11.
        //Settings.System.AUTO_TIME_ZONE was deprecated in API level 17.
        //Use Settings.Global.AUTO_TIME_ZONE instead.
        int state = Settings.System.getInt(context.getContentResolver(), Settings.System.AUTO_TIME_ZONE, 1);
        return (state == 1) ? true : false;
    }
    
    public static void setTimezoneSettingAuto(Context context, boolean isAuto) {
        Settings.System.putInt(context.getContentResolver(), Settings.System.AUTO_TIME_ZONE, (isAuto ? 1 : 0));
    }

三、时间格式24/12

    /**
     * Get Display times style(12 or 24 hours)
     * @param context Context
     * @return ture=24, false=12
     */
    public static boolean is24HourFormat(Context context) {
        //Can use this to instand
        //return DateFormat.is24HourFormat(context);
        int state = Settings.System.getInt(context.getContentResolver(), Settings.System.TIME_12_24, 24);
        return (state == 24) ? true : false;
    }
    
    public static void set24HourFormat(Context context, boolean is24Style) {
        Settings.System.putInt(context.getContentResolver(), Settings.System.TIME_12_24, (is24Style ? 24 : 12));
        //Do not forget to inform system.
        Intent intent = new Intent(Intent.ACTION_TIME_CHANGED);
        context.sendBroadcast(intent);
    }

四、时区

    public static String getTimezoneId() {
        final TimeZone timeZone = TimeZone.getDefault();
        String id = timeZone.getID();
        return id;
    }
    
    public static void setTimezone(Context context, String zoneId) {
        final AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
        alarmManager.setTimeZone(zoneId);
        //DO not need send Intent.ACTION_TIMEZONE_CHANGED
        //Because system will send itself, and we do not have permission
    }
设置时区时需要添加权限

<uses-permission android:name="android.permission.SET_TIME_ZONE" />

获取以及设置时区用到的都是TimezoneID,它们以字符串的形式存在。

可以用诸如"GMT+05:00", "GMT+0500", "GMT+5:00","GMT+500","GMT+05", and"GMT+5","GMT-05:00"的ID

Android系统用的ID一般为

<timezone id="Asia/Shanghai">中国标准时间 (北京)</timezone>
<timezone id="Asia/Hong_Kong">香港时间 (香港)</timezone>
<timezone id="Asia/Taipei">台北时间 (台北)</timezone>
<timezone id="Asia/Seoul">首尔</timezone>
<timezone id="Asia/Tokyo">日本时间 (东京)</timezone>


五、系统时间

        Calendar calendar = Calendar.getInstance();
        mTimePicker.setIs24HourView(DateFormat.is24HourFormat(this));
        mTimePicker.setCurrentHour(calendar.get(Calendar.HOUR_OF_DAY));
        mTimePicker.setCurrentMinute(calendar.get(Calendar.MINUTE));
    public static void setTime(int hour, int minute) {
        Calendar calendar = Calendar.getInstance();
        
        //Calendar.HOUR_OF_DAY use 24 hour format
        //Calendar.HOUR_OF use 12 hour format, and we have to use calendar.set(Calendar.AM_PM, Calendar.PM);
        calendar.set(Calendar.HOUR_OF_DAY, hour);
        calendar.set(Calendar.MINUTE, minute);
        calendar.set(Calendar.SECOND, 0);
        
        long millis = calendar.getTimeInMillis();
        if ((millis / 1000) < Integer.MAX_VALUE) {
            SystemClock.setCurrentTimeMillis(millis);
        }
    }
但是SystemClock.setCurrentTimeMillis(millis);需要系统权限,解决办法请参见  增加修改系统时间权限

或者调出系统时间设置界面 startActivityForResult(new Intent(android.provider.Settings.ACTION_DATE_SETTINGS), 1);

六、日期格式

    public static String getDateFormat(Context context) {
        String fromat = Settings.System.getString(context.getContentResolver(), Settings.System.DATE_FORMAT);
        return fromat;
    }
    
    public static void setDateFormat(Context context, String dateFormat) {
        Settings.System.putString(context.getContentResolver(), Settings.System.DATE_FORMAT, dateFormat);
    }
日期格式一般的形式为:yyyy/MM/dd、yyyy MMM d、yyyy-MM-dd、yyyyMMdd


七、系统日期

        Calendar calendar = Calendar.getInstance();
        mDatePicker.updateDate(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), calendar.get(Calendar.DATE));
    public static void setDate(int year, int month, int day) {
        Calendar calendar = Calendar.getInstance();
        calendar.set(Calendar.YEAR, year);
        calendar.set(Calendar.MONTH, month);
        calendar.set(Calendar.DATE, day);
        
        long millis = calendar.getTimeInMillis();
        if ((millis / 1000) < Integer.MAX_VALUE) {
            SystemClock.setCurrentTimeMillis(millis);
        }
    }
同样的,SystemClock.setCurrentTimeMillis(millis);需要系统权限,解决办法请参见  增加修改系统时间权限
电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值