private void setStartDateAndEndDate() {
TextView startDateTextView = mStartDateView.findViewById(R.id.fixtures_total_count);
startDateTextView.setText(SelectedDateTimeHolder.getSelectedStartDate().getDate().format(DateTimeFormatter.ofPattern("EEE, MMM dd yyyy")));
TextView endDateTextView = mEndDateView.findViewById(R.id.fixtures_total_count);
endDateTextView.setText(SelectedDateTimeHolder.getSelectedEndDate().getDate().format(DateTimeFormatter.ofPattern("EEE, MMM dd yyyy")));
}
Asked
Active
Viewed 2,485 times
0
1 Answers
1
You can substitute the old lib with this one
The package org.threeten.bp refers to this project which is now closed.
Aim of the project was to provide updates to the JDK8 as stated here
The availability of the same functionalities is not guaranteed as Android SDK supports only partially the complete JDK8

DaniVS
- 11
- 1
- 4
-
did this answer your question? – pixel Feb 04 '22 at 18:21