The Microsoft documents define an interface as follows:
An interface contains definitions for a group of related functionalities that a class or a struct can implement.
There are minor differences in Java and C# interfaces which can be found here.
(Assuming you to be from a Java background)
Now you have a confusion in between abstract class's overridden method and an interface method.
Check the difference here
The GetView method is a method of the Android abstract class called BaseAdapter.
and hence to get info on that first you need to look into BaseAdapter then find GetView method in it. And there you can get the exact description of the method and what it does. Note: that Xamarin.Android works exactly the same as native Android so you could use the same documentation for an understanding of the methods.
Note: Implementation differs from C# to Java.
Now an eg for an interface would be the IOnMapReadyCallback which is used as a callback by Xamarin.Android to check if the map is ready to be used.
Now interfaces in C# as per their naming convention begin with an I.
eg: the Android java OnTouchListener interface becomes the IOnTouchListener in Xamarin Android and so on and so forth.
Now if you use an interface method this method is just defined and it is mandatory that you use that method in your class which you are inheriting it to, so this method will be added to that class and will not act as an overridden method like it does in case of abstract class.
Now in case, you want to understand when an interface method is invoked you need to check the Android documentation for that interface eg the OnMapReadyCallback then find the method you need to understand i.e. onMapReady
In case you don't understand anything revert.
Goodluck!
Happy coding.