This question is locked. New answers and comments are not allowed.
I have copied your code (below) into my app by the OnCellClickListener never fires..
calendarView.setOnCellClickListener(new RadCalendarView.OnCellClickListener() { @Override public void onCellClick(CalendarCell clickedCell) { // Respond to cell click here... Toast.makeText(MainActivity.this, "setOnCellClickListener: " + clickedCell.getText(), Toast.LENGTH_LONG).show(); }});
Is there some other setting I need to turn on or off in order for this to work?
I have tried this in both Month and Week view mode.
Rich