Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6902791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:50:33+00:00 2026-05-27T07:50:33+00:00

It seems logical that there should be some simple method to check which DatePicker

  • 0

It seems logical that there should be some simple method to check which DatePicker object comes first but I can’t find done.

// so if you had two objects
final DatePicker start_datepicker = (DatePicker)findViewById(R.id.DatePickerStart);
final DatePicker end_datepicker = (DatePicker)findViewById(R.id.DatePickerEnd);

// I was thinking something along the lines of:
if (end_datepicker > start_datepicker) {
  // something
}

// or is there something like 
if (end_datepicker.isLarger(start_datepicker)) {
  // Something
}

Is this possible or does anyone know of something simple along these lines to compare to dates?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:50:34+00:00Added an answer on May 27, 2026 at 7:50 am

    A DatePicker is a UI widget for displaying a date. You don’t set it by assignment (as in your code) but by calling it’s init method. Typically you would then track the date using an OnDateChangedListener. Nevertheless, you can compare the current dates displayed on two such widgets with something like this:

    /** Returns a number <0, 0, or >0 when dp1 displays a date <, =, or > dp2. */
    public int compare(DatePicker dp1, DatePicker dp2) {
        int compare = dp1.getYear() - dp2.getYear();
        if (compare == 0) {
            compare = dp1.getMonth() - dp2.getMonth();
            if (compare == 0) {
                compare = dp1.getDay() - dp2.getDay();
            }
        }
        return compare;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Seems like a simple enough question but I can't seem to find the answer.
Seems like as really simple thing to do, but I just can't track it
I have a scenario where I have some text, which should be user-selectable. The
Seems like a simple problem: I have an SVN repo inside our firewall. I
Seems like the subtraction is triggering some kind of issue and the resulting value
Seems that requirements on safety do not seem to like systems that use AI
Here's an interesting problem. Is there a way to write some code using LINQ
From the little that I know about WCF it seems to be the right
I have some Fortran 77 source files that I'm trying to convert from a
My app has 10 features that are enabled/disabled depending upon which of the 3

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.