DisplayContext

@Retention(value = AnnotationRetention.SOURCE)
@Target(allowedTargets = [AnnotationTarget.ANNOTATION_CLASS, AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.FIELD])
public annotation DisplayContext


Denotes a android.content.Context that is tied to a android.view.Display and can be used to obtain one via android.content.Context.getDisplay. Note: it is not considered to be a UI or visual Context and must not be used to obtain UI-related services, such as android.view.WindowManager, android.view.LayoutInflater or android.app.WallpaperManager via android.content.Context.getSystemService. If the UI services mentioned above are required, instead please use Contexts which are marked as UiContext.

android.app.Activity, Context instances created with android.content.Context.createWindowContext or android.content.Context.createDisplayContext can be used to get an associated android.view.Display instance.

This is a marker annotation and has no specific attributes.

Summary

Public constructors

Public constructors

DisplayContext

public DisplayContext()