Я прочитал ваш вопрос и попытался решить эту проблему. передайте дату (время в миллисекундах) в длинном значении типа, чтобы установить дату в представлении календаря, как это calendar_view.setDate(milliTime);
попробуйте этот код для достижения своей цели.
Код
calendar_view = findViewById(R.id.calendar_view);
//replace date variable static value to your edit text
value
String date = "25/06/2019";
String parts[] = date.split("/");
int day = Integer.parseInt(parts[0]);
int month = Integer.parseInt(parts[1]);
int year = Integer.parseInt(parts[2]);
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.YEAR, year);
calendar.set(Calendar.MONTH, month);
calendar.set(Calendar.DAY_OF_MONTH, day);
long milliTime = calendar.getTimeInMillis();
calendar_view.setDate(milliTime);