I’m creating an application that lets user to list down school assignment and the deadline. In the OnClickListerner, the “selectedDate” is highlighted as an error. Is there a way to solve the issue? Answer The selectedDate is defined in another scope so it is not visible for OnClickListerner. You can move it to the onCreate method scope.