Android Time Compare isSameDate(Time t1, Time t2)

Here you can find the source of isSameDate(Time t1, Time t2)

Description

is Same Date

License

Apache License

Declaration

public static final boolean isSameDate(Time t1, Time t2) 

Method Source Code

//package com.java2s;
/*//w ww .  j av a2 s.c  o m
 * Copyright (C) 2011 The original author or authors.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

import android.text.format.Time;

public class Main {
    public static final boolean isSameDate(Time t1, Time t2) {
        return (t1.monthDay == t2.monthDay) && (t1.month == t2.month)
                && (t1.year == t2.year);
    }
}

Related

  1. isEarilerDate(Time t1, Time t2)
  2. isPastDateTime(DateTime target)
  3. isSameLocalTime(Calendar cal1, Calendar cal2)
  4. isSameMonth(Time t1, Time t2)
  5. isTimeAfter(String webTime, String localTime)
  6. isOnRange(String fromTime, String toTime)