this
in Java is a reference to the current object instance. So if you are writing a method for class MyClass
, this
is the current instance of MyClass
.
Note that in your case, writing this.findViewById(...)
isn't really necessary, and may be considered bad style.