I\'m going through the android development training docs and stumbled upon this:
\"An Intent is an object that provides runtime binding between separate
Runtime binding is the same thing as dynamic binding or late binding. Dynamic binding basically means that the method implementation that is actually called is determined at run-time, and not at compile-time. And that’s why it’s called dynamic binding – because the method that will be run is chosen at run time.