源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

仿iphone中短信以及通话记录的时间显示

  • 时间:2022-03-13 06:27 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:仿iphone中短信以及通话记录的时间显示
废话不多说,上代码
[u]复制代码[/u] 代码如下:
public String getRelativeTimeSpanStringForIphone(long time,long now){   SimpleDateFormat formatter = null;   Resources res = mContext.getResources();   formatter = new SimpleDateFormat("yy-MM-dd");   String yearMonthDay = formatter.format(time);   if(time>now){    return yearMonthDay;   }   formatter = new SimpleDateFormat("E");   String dayOfWeek = formatter.format(time);   formatter = new SimpleDateFormat("kk:mm");   String hourMinuOfTime = formatter.format(time);   formatter = new SimpleDateFormat("kk:mm:ss");   String hourMinuSecOfNow = formatter.format(now);   long millisecOfNow = getMillisecOfNow(hourMinuSecOfNow);   if((now-millisecOfNow<time)||(now-millisecOfNow==time)){    String timeOfCurrentDay = hourMinuOfTime;    String[] hourAndminute = timeOfCurrentDay.split(":");    int hour =Integer.parseInt(hourAndminute[0]);    ContentResolver cv = mContext.getContentResolver();             String strTimeFormat = android.provider.Settings.System.getString(cv,android.provider.Settings.System.TIME_12_24);             if(strTimeFormat!=null){                 if(strTimeFormat.equals("12")){                     if(hour>12){                     return  res.getString(R.string.pm)+hour+":"+hourAndminute[1];                     }else{                         return  res.getString(R.string.am)+hour+":"+hourAndminute[1];                     }                 }else{                     return hour%24+":"+hourAndminute[1];                 }             }else{                 return hour%24+":"+hourAndminute[1];             }   }else{       if(now-518400000l-millisecOfNow>time){     return yearMonthDay;    }else{     if(now-millisecOfNow-86400000l<time){      //End:modified by sunjinbiao on 20120823 for bug[540]       return res.getString(R.string.yesterday);     }else{            return dayOfWeek;     }    }   }  }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部