LauncherApps.ArchiveCompatibilityParams


public static class LauncherApps.ArchiveCompatibilityParams
extends Object

java.lang.Object
   ↳ android.content.pm.LauncherApps.ArchiveCompatibilityParams


Used to enable Archiving compatibility options with LauncherApps.setArchiveCompatibility(ArchiveCompatibilityParams).

Summary

Public constructors

ArchiveCompatibilityParams()

Public methods

void setEnableIconOverlay(boolean enableIconOverlay)

If true, provides a cloud overlay for archived apps to ensure users are aware that a certain app is archived.

void setEnableUnarchivalConfirmation(boolean enableUnarchivalConfirmation)

If true, the user is shown a confirmation dialog when they click an archived app, which explains that the app will be downloaded and restored in the background.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

ArchiveCompatibilityParams

public ArchiveCompatibilityParams ()

Public methods

setEnableIconOverlay

Added in API level 35
public void setEnableIconOverlay (boolean enableIconOverlay)

If true, provides a cloud overlay for archived apps to ensure users are aware that a certain app is archived. True by default.

Launchers might want to disable this operation if they want to provide custom user experience to differentiate archived apps.

Parameters
enableIconOverlay boolean

setEnableUnarchivalConfirmation

Added in API level 35
public void setEnableUnarchivalConfirmation (boolean enableUnarchivalConfirmation)

If true, the user is shown a confirmation dialog when they click an archived app, which explains that the app will be downloaded and restored in the background. True by default.

Launchers might want to disable this operation if they provide sufficient, alternative user guidance to highlight that an unarchival is starting and ongoing once an archived app is tapped. E.g., this could be achieved by showing the unarchival progress around the icon.

Parameters
enableUnarchivalConfirmation boolean