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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T12:46:24+00:00 2026-06-16T12:46:24+00:00

I have an onClickListener in Android which changes the month of a Java.util.Calendar object

  • 0

I have an onClickListener in Android which changes the month of a Java.util.Calendar object depending on +/- button clicked. The code to set the calendar is below. It seems I cannot set the month to “10”. What in the world is going on here?

Calendar c2 = Calendar.getInstance();
int newmonth = 9;
Log.d (TAG, "month before: "+ c2.get (Calendar.MONTH));
c2.set (Calendar.MONTH, newmonth);
Log.d (TAG, "month now: " + c2.get(Calendar.MONTH));

month before: 11
month now: 9

Calendar c2 = Calendar.getInstance();
int newmonth = 10;
Log.d (TAG, "month before: "+ c2.get (Calendar.MONTH));
c2.set (Calendar.MONTH, newmonth);
Log.d (TAG, "month now: " + c2.get(Calendar.MONTH));

month before: 11
month now: 11

  • 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-06-16T12:46:26+00:00Added an answer on June 16, 2026 at 12:46 pm

    Months start at 0, so 9 is October and 10 is November, and November does not have 31 days.

    If you add:

    Log.d (TAG, "day of month now: " + c2.get(Calendar.DAY_OF_MONTH));
    

    You will see that in your second example the day has moved from 31st to 1st.

    To get the desired behaviour, you should use:

    c2.add(Calendar.MONTH, -1); // or +1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a button to which I attach an onClickListener via code. I have
I have a button in android which on clicking produces an alert box. But
I Have just started learning Android, this is the code of my java file.
I have two onclick method in android project clr=(Button)findViewById(R.id.Button01); clr.setOnClickListener(new OnClickListener() { public void
I have this loop method to display a ViewPager and I set an OnClickListener
I have defined the TextView array as final. And I set a OnClickListener() for
have written this little class, which generates a UUID every time an object of
I have an Android app which I use to register users on my web
I am developing an android application in which I have passed a string from
I have set an Android ImageButton's Bitmap to a jpeg from the net via

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.