setOnClickListener는 자바로 쓸 때 몇 가지 절차가 있다. new로 OnClickListener의 새 객체임을 명시해줘야 override 함수가 딱 나타난다.
이때 onClick 내부의 코드는 메인쓰레드 위에서 돌아가므로 우선순위가 높다고 할 수 있겠다.
The system executes the code in onClick on the main thread. This means your onClick code must execute quickly to avoid delaying your app's response to further user actions. See Keeping Your App Responsive for more details.