We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i got error on ''mCalendarView(manager); '': this is my code
@OverRide public View onCreateView(LayoutInflater inflater, @nullable ViewGroup container, @nullable Bundle savedInstanceState) { return inflater.inflate(R.layout.activity_main, container, false); }
@Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); initView(); } private void initView(){ CalendarManager manager = new CalendarManager(LocalDate.now(), CalendarManager.State.MONTH, LocalDate.now(), LocalDate.now().plusYears(1)); mCalendarView = (CollapseCalendarView) getView().findViewById(R.id.calendar); mCalendarView(manager); }
}
The text was updated successfully, but these errors were encountered:
Ti try
CollapseCalendarView calendarView = (CollapseCalendarView) rootView.findViewById(R.id.calendar); calendarView.init(LocalDate.now(), LocalDate.now(), LocalDate.now().plusYears(1));
without CalendarManager in fragment
Sorry, something went wrong.
No branches or pull requests
i got error on ''mCalendarView(manager); '': this is my code
@OverRide
public View onCreateView(LayoutInflater inflater, @nullable ViewGroup container, @nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.activity_main, container, false);
}
}
The text was updated successfully, but these errors were encountered: