ApplicationStatus

sealed class ApplicationStatus

Possible states for the application status. The application should only be in Init state before an activity is on show. After which point, the only possible states should be Foregrounded or Backgrounded

Inheritors

Types

Link copied to clipboard
class Backgrounded(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus
Link copied to clipboard
class Foregrounded(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus
Link copied to clipboard
class Init(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus

Properties

Link copied to clipboard