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
Asked
Active
Viewed 529 times
-2
-
I got it Thank You Mike M – Muthukumar Apr 19 '16 at 11:35
1 Answers
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