Android examples for java.util:Minute
between Minute from Two Dates
//package com.java2s; import java.util.Date; public class Main { public static final long MINUTE_MS = 60 * 1000; public static int betweenMinute(Date date1, Date date2) { return (int) (betweenmillonsecond(date1, date2) / MINUTE_MS); }/* w w w.j av a 2 s. c o m*/ public static long betweenmillonsecond(Date date1, Date date2) { long day2 = date2.getTime(); long day1 = date1.getTime(); long betweenseconds = Math.abs(day2 - day1); return betweenseconds; } }