-2

Hi I'm new to android i'm doing one project in my project i want to check is sunday from selected date in datepicker dialog please help me

Bajirao Shinde
  • 1,356
  • 1
  • 18
  • 26

1 Answers1

0

you can use like this...

if (choosenDate.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY){
//task related to sunday
}else{
//tasks related to other days
}
Saurabh Vardani
  • 1,821
  • 2
  • 18
  • 33