I looked on http://developer.android.com/reference/android/view/package-summary.html and saw that the view class has an interface named "View.OnClickListener" which is "Interface definition for a callback to be invoked when a view is clicked" My question is what the difference is if you specify the view or not in the interface?
Basically is
button.setOnClickListener(new Button.OnClickListener() the Same as
button.setOnClickListener(new OnClickListener()?