夏令时开始的时刻Android系统会1个小时补正

1,修改文件bionic/libc/tzcode/localtime.c 

 //US
    char* pst = "PST8:00:00";
    char* mst = "MST7:00:00";
    char* cst = "CST6:00:00";
    char* est = "EST5:00:00";

    //EU
    char* gmt = "GMT0:00:00";
    char* cet = "CET-1:00:00";

    // try the "persist.sys.timezone" system property first
    static char buf[PROP_VALUE_MAX];
    if (name == NULL && __system_property_get("persist.sys.timezone", buf) > 0) {
        name = buf;
    }
    if(strcmp(buf,"America/Chicago") == 0){
        name = cst;
    }else if(strcmp(buf,"America/New_York") == 0){
        name = est;
    }else if(strcmp(buf,"America/Denver") == 0){
        name = mst;
    }else if(strcmp(buf,"America/Los_Angeles") == 0){
        name = pst;
    }else if(strcmp(buf,"Europe/London") == 0){
        name = gmt;
    }else if(strcmp(buf,"Europe/Belgrade") == 0){
        name = cet;
    }

2,修改文件libcore/luni/src/main/java/libcore/util/ZoneInfo.java

@Override
    public int getOffset(long when) {
        int unix = (int) (when / 1000);
        int transition = Arrays.binarySearch(mTransitions, unix);
        if (transition < 0) {
            transition = ~transition - 1;
            if (transition < 0) {
                // Assume that all times before our first transition correspond to the
                // oldest-known non-daylight offset. The obvious alternative would be to
                // use the current raw offset, but that seems like a greater leap of faith.
                return mEarliestRawOffset;
            }
        }
        //return mRawOffset + mOffsets[mTypes[transition] & 0xff] * 1000;  //注掉时间偏移
        return mRawOffset;
    }

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值