会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
滴滴打的哒
做一个优秀的人
博客园
首页
新随笔
联系
订阅
管理
2019年12月4日
double小数位数的显示
摘要: 不显示小数点后的0,只显示2位小数 DecimalFormat df = new DecimalFormat(".##"); double num = 450.029000089; System.out.println(df.format(num)); 打印结果:450.03
阅读全文
posted @ 2019-12-04 14:22 滴滴打的哒
阅读(526)
评论(0)
推荐(0)
2019年11月27日
判断应用是否处于前台
摘要: private boolean isForeground() { ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); List<ActivityManager.
阅读全文
posted @ 2019-11-27 18:21 滴滴打的哒
阅读(365)
评论(0)
推荐(0)
公告