Most visited

Recently visited

RequiresApi

public abstract @interface RequiresApi
implements Annotation

android.support.annotation.RequiresApi


Denotes that the annotated element should only be called on the given API level or higher.

This is similar in purpose to the older @TargetApi annotation, but more clearly expresses that this is a requirement on the caller, rather than being used to "suppress" warnings within the method that exceed the minSdkVersion.

Summary

Inherited methods

From interface java.lang.annotation.Annotation

Hooray!