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 7568129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:50:43+00:00 2026-05-30T14:50:43+00:00

I would like to do when user select the past date in datepicker, it

  • 0

I would like to do when user select the past date in datepicker, it should not accept yesterday date. My application will prompt message to inform user cant select less than current date.anyone guide me please ?…Thank you

mDateDisplay = (TextView) findViewById(R.id.dateDisplay);
            Button pickDate_btn = (Button) findViewById(R.id.pickDate);
            pickDate_btn.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                showDialog(DATE_DIALOG_ID);
            }
        });

        final Calendar now = Calendar.getInstance();
        mYear = now.get(Calendar.YEAR);
        mMonth = now.get(Calendar.MONTH);
        mDay = now.get(Calendar.DAY_OF_MONTH);

        updateDisplay();      

@Override
    protected Dialog onCreateDialog(int id) {
        switch (id) {
            case DATE_DIALOG_ID:
                return new DatePickerDialog(this,
                            mDateSetListener,
                            mYear, mMonth, mDay);
        }
        return null;
    }

    @Override
    protected void onPrepareDialog(int id, Dialog dialog) {
        switch (id) {

            case DATE_DIALOG_ID:
                ((DatePickerDialog) dialog).updateDate(mYear, mMonth, mDay);
                break;
        }
    }    

    private void updateDisplay() {
        mDateDisplay.setText(
            new StringBuilder()
                    // Month is 0 based so add 1
                    .append(mDay).append("-")
                    .append(mMonth + 1).append("-")
                    .append(mYear).append(" "));
    }

    private DatePickerDialog.OnDateSetListener mDateSetListener =
            new DatePickerDialog.OnDateSetListener() {

    @Override
    public void onDateSet(DatePicker view, int year,int monthOfYear, int dayOfMonth) {
                    // TODO Auto-generated method stub

            mYear = year;
                    mMonth = monthOfYear;
                    mDay = dayOfMonth;
                    updateDisplay();

    //should add code here?             
                }
            };
  • 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-30T14:50:44+00:00Added an answer on May 30, 2026 at 2:50 pm

    We can not set any attribute which limits DatePicker to select a date which is not past, but we can do it programmatically, by:

    if(dateObj1.before(dateObj2) || dateObj1.equals(dateObj2)){
    //the program runs normally
    }
    else{
    
                    new AlertDialog.Builder(PM_Edit.this)
    
                    .setTitle("Wrong Data Input!")
    
                    .setMessage("The end Date must be Before the start Date, please insert new Date values")
    
                    .setNeutralButton("Ok",
    
                    new DialogInterface.OnClickListener() {
    
                    public void onClick(DialogInterface dialog,
    
                    int which) {
    
                    }
    
                    }).show();
                }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like the user to select the time in javascript and to avoid
I’m developing an application dedicated to generate statistical reports, I would like that user
I have 3 spinners (dropdown menus). I would like the user to select item
In my case, i would like to let the user select whether some information
When a user select a tab on my site, I would like to store
I would like to know about how to delete a folder once user select
I'm using Authlogic with my Ruby on Rails App. I would like user to
I'm embedding a Flash video into an HTML and would like the user to
I'm developing an ASP.NET Web app and would like the user to be able
Has anyone used delegates with exchnage web services? I would like one user to

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.