手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >仿iphone中短信以及通话记录的时间显示
仿iphone中短信以及通话记录的时间显示
摘要:废话不多说,上代码复制代码代码如下:publicStringgetRelativeTimeSpanStringForIphone(longt...

废话不多说,上代码

复制代码 代码如下:

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%12+":"+hourAndminute[1];

}else{

return res.getString(R.string.am)+hour%12+":"+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;

}

}

}

}

【仿iphone中短信以及通话记录的时间显示】相关文章:

Android 使用Gallery实现3D相册(附效果图+Demo源码)

android imageview图片居中技巧应用

android中选中菜单的显示跳转和隐式跳转的实例介绍

修改linux内核开机logo并居中全屏显示

Android Studio使用教程图文详解

android 桌面 未读角标

android之计时器(Chronometer)的使用以及常用的方法

Android中删除文件以及文件夹的命令记录

Android监听文件和目录动态

android 左右滑动+索引图标实现方法与代码

精品推荐
分类导航