Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new comer to this android field i am finding very difficult to do this please help me

share|improve this question
1  
what have you tried ? – Lucifer Oct 10 '12 at 2:56

closed as not a real question by Stewbob, Kris, Alex K, Frank van Puffelen, Zuul Oct 10 '12 at 11:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Try this.

_dateListener = new DatePickerDialog.OnDateSetListener() {

        public void onDateSet(DatePicker view, int year, 
                              int monthOfYear, int dayOfMonth) {
            // Month is 0 based so add 1
            _dateString = (monthOfYear + 1) + "/" +
                dayOfMonth + "/" + year;
            _dateButton.setText(_dateString);
        }
    };

@Override
protected Dialog onCreateDialog(int id) {
    Date date;
    Calendar calendar = Calendar.getInstance();
    SimpleDateFormat formatter = new SimpleDateFormat("MM/dd/yyyy");
    try {
            date = formatter.parse(_dateString);
            calendar.setTime(date);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return new DatePickerDialog(this, _listener, calendar.get(Calendar.YEAR), 
                            calendar.get(Calendar.MONTH), calendar.get(Calendar.DAY_OF_MONTH));
return null;
}

Then in a button

   public void onClick(View v){showDialog(DATE_DIALOG_ID); // showDialog is depricated

Finally, store the _dateString in the database.

share|improve this answer

As you are new, the official sqlite docu is very good. I always try to avoid storing date/times as strings as they take more space and it takes longer for sqlite to sort for TEXT fields than REAL or INTEGER

Date and Time Datatype

SQLite does not have a storage class set aside for storing dates and/or times. Instead, the built-in Date And Time Functions of SQLite are capable of storing dates and times as TEXT, REAL, or INTEGER values:

  • TEXT as ISO8601 strings ("YYYY-MM-DD HH:MM:SS.SSS").
  • REAL as Julian day numbers, the number of days since noon in Greenwich on November 24, 4714 B.C. according to the proleptic Gregorian calendar.
  • INTEGER as Unix Time, the number of seconds since 1970-01-01 00:00:00 UTC. Applications can chose to store dates and times in any of these formats and freely convert between formats using the built-in date and time functions.
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.