Skip to Content

If you’ve ever written code for Android, you’ve probably wondered why Override is used. You’ve probably also heard that it’s a useful technique for creating test seams in production code, but why? Well, method overriding allows you to create your own unique implementation of a method without touching the parent class. This is known as …

Read More about Why Override is Used in Android?