It is entirely appropriate to refer to an object by a class rather than an interface if no appropriate interface exists. For example, consider value classes, such as String and BigInteger.
For Android, even String should often be replaced with the CharSequence interface since non-String CharSequences are often used.