CaptivePortal
open class CaptivePortal : Parcelable
A class allowing apps handling the ConnectivityManager#ACTION_CAPTIVE_PORTAL_SIGN_IN
activity to indicate to the system different outcomes of captive portal sign in. This class is passed as an extra named ConnectivityManager#EXTRA_CAPTIVE_PORTAL
with the ACTION_CAPTIVE_PORTAL_SIGN_IN
activity.
Summary
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public methods |
open Int |
|
open Unit |
Indicate to the system that the user does not want to pursue signing in to the captive portal and the system should continue to prefer other networks without captive portals for use as the default active data network.
|
open Unit |
Indicate to the system that the captive portal has been dismissed.
|
open Unit |
|
Public methods
describeContents
open fun describeContents(): Int
ignoreNetwork
open fun ignoreNetwork(): Unit
Indicate to the system that the user does not want to pursue signing in to the captive portal and the system should continue to prefer other networks without captive portals for use as the default active data network. The system will not retest the network for a captive portal so as to avoid disturbing the user with further sign in to network notifications.
reportCaptivePortalDismissed
open fun reportCaptivePortalDismissed(): Unit
Indicate to the system that the captive portal has been dismissed. In response the framework will re-evaluate the network's connectivity and might take further action thereafter.
writeToParcel
open fun writeToParcel(
out: Parcel,
flags: Int
): Unit
Properties