public abstract class

UACheckBoxPreference

extends CheckBoxPreference
java.lang.Object
   ↳ androidx.preference.Preference
     ↳ androidx.preference.TwoStatePreference
       ↳ androidx.preference.CheckBoxPreference
         ↳ com.urbanairship.preference.UACheckBoxPreference
Known Direct Subclasses

Class Overview

Airship check box preference.

Summary

[Expand]
Inherited Constants
From class androidx.preference.Preference
Fields
protected boolean isChecked
[Expand]
Inherited Fields
From class androidx.preference.TwoStatePreference
Public Constructors
UACheckBoxPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)
UACheckBoxPreference(Context context, AttributeSet attrs, int defStyleAttr)
UACheckBoxPreference(Context context, AttributeSet attrs)
Public Methods
void setChecked(boolean value)
Protected Methods
abstract boolean getInitialAirshipValue(UAirship airship)
Gets the initial Airship value for the preference.
abstract void onApplyAirshipPreference(UAirship airship, boolean enabled)
Called when the preference should be set on Airship.
boolean shouldPersist()
[Expand]
Inherited Methods
From class androidx.preference.CheckBoxPreference
From class androidx.preference.TwoStatePreference
From class androidx.preference.Preference
From class java.lang.Object
From interface java.lang.Comparable

Fields

protected boolean isChecked

Public Constructors

public UACheckBoxPreference (Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)

public UACheckBoxPreference (Context context, AttributeSet attrs, int defStyleAttr)

public UACheckBoxPreference (Context context, AttributeSet attrs)

Public Methods

public void setChecked (boolean value)

Protected Methods

protected abstract boolean getInitialAirshipValue (UAirship airship)

Gets the initial Airship value for the preference.

Parameters
airship The UAirship instance.
Returns
  • The initial value for the preference.

protected abstract void onApplyAirshipPreference (UAirship airship, boolean enabled)

Called when the preference should be set on Airship.

Parameters
airship The UAirship instance.
enabled The value of the preference.

protected boolean shouldPersist ()