Android 实现秒转换成时分秒的方法
更新时间:2020年05月28日 10:32:48 作者:爱码士_yan
这篇文章主要介绍了Android 实现秒转换成时分秒的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
在对时间进行转换中,通常会把秒转换成时分秒的小功能,怎么才能做到呢,其实也简单 这就涉及到时分秒之间的相互转换
具体代码如下:
import android.content.Context; public class ToolsUtil { private static ToolsUtil toolsUtil; private Context mContext; private ToolsUtil(Context context) { mContext = context.getApplicationContext(); } public static ToolsUtil getInstance(Context context) { if (toolsUtil == null) { toolsUtil = new ToolsUtil(context); } return toolsUtil; } public String timeConversion(int time) { int hour = 0; int minutes = 0; int sencond = 0; int temp = time % 3600; if (time > 3600) { hour = time / 3600; if (temp != 0) { if (temp > 60) { minutes = temp / 60; if (temp % 60 != 0) { sencond = temp % 60; } } else { sencond = temp; } } } else { minutes = time / 60; if (time % 60 != 0) { sencond = time % 60; } } return (hour<10?("0"+hour):hour) + ":" + (minutes<10?("0"+minutes):minutes) + ":" + (sencond<10?("0"+sencond):sencond); } }
这样就把时间转换成 00:00:00 的时间格式了
ps:下面看下android通过秒换算成时分秒
把秒换算成时分秒
public static String cal(int second) { int h = 0; int d = 0; int s = 0; int temp = second % 3600; if (second > 3600) { h = second / 3600; if (temp != 0) { if (temp > 60) { d = temp / 60; if (temp % 60 != 0) { s = temp % 60; } } else { s = temp; } } } else { d = second / 60; if (second % 60 != 0) { s = second % 60; } } return h + "时" + d + "分" + s + "秒"; }
通过秒分别得出多少小时多少分多少秒
public class TimeUtils { public static String getHours(long second) {//计算秒有多少小时 long h = 00; if (second > 3600) { h = second / 3600; } return h+""; } public static String getMins(long second) {//计算秒有多少分 long d = 00; long temp = second % 3600; if (second > 3600) { if (temp != 0) { if (temp > 60) { d = temp / 60; } } } else { d = second / 60; } return d + ""; } public static String getSeconds(long second) {//计算秒有多少秒 long s = 0; long temp = second % 3600; if (second > 3600) { if (temp != 0) { if (temp > 60) { if (temp % 60 != 0) { s = temp % 60; } } else { s = temp; } } } else { if (second % 60 != 0) { s = second % 60; } } return s + ""; } }
总结
到此这篇关于Android 实现秒转换成时分秒的方法的文章就介绍到这了,更多相关Android 秒转换成时分秒内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Android编程实现带有图标的ListView并带有长按菜单效果示例
这篇文章主要介绍了Android编程实现带有图标的ListView并带有长按菜单效果,结合实例形式分析了Android带图标的ListView及菜单功能相关实现技巧,需要的朋友可以参考下2017-06-06Android手机开发 使用线性布局和相对布局实现Button垂直水平居中
本文主要结合自己的理解分别对使用LinearLayout和RelativeLayout两种方式实现居中做了总结,希望对大家有所帮助。2016-05-05Native.js获取监听开关等操作Android蓝牙设备实例代码
本文为大家分享了Native.js对Android蓝牙设备的操作实例代码包括:监听蓝牙开关状态,开启关闭蓝牙,获取蓝牙设备列表,蓝牙连接票据打印机2018-09-09Android 解决嵌套Fragment无法接收onCreateOptionsMenu事件的问题
本文主要介绍Android Fragment无法接收onCreateOptionsMenu事件的问题,这里给出解决办法以及详细代码,希望能帮助有需要的小伙伴2016-07-07
最新评论