Skip to content

Commit

Permalink
fix#1216:Warning fixed in min date picker
Browse files Browse the repository at this point in the history
  • Loading branch information
haran2248 committed Feb 25, 2021
1 parent 47907ad commit ff9ecd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class SIDetailsActivity : BaseActivity(), StandingInstructionContract.SIDetailsV
DatePickerDialog.OnDateSetListener { view, year, monthOfYear, dayOfMonth ->
tv_valid_till.text = "$dayOfMonth-${(monthOfYear + 1)}-$year"
}, year, month, day)
picker.datePicker.minDate = SimpleDateFormat("dd-MM-yyyy").parse(tv_valid_from.text.toString()).time
picker.datePicker.minDate = SimpleDateFormat("dd-MM-yyyy",Locale.getDefault()).parse(tv_valid_from.text.toString()).time
picker.show()
}

Expand Down

0 comments on commit ff9ecd0

Please sign in to comment.