this is referring to the instance of the object that is being acted upon.
In the case that you have above, this.findViewById(R.id.continue_button) this is referring to a method in a parent class (Specifically either Activity.findViewById() or View.findViewByid(), assuming you are writing your own subclass of Activity or View!).