Android APIs
public class

Settings

extends Object
java.lang.Object
   ↳ android.support.v17.leanback.system.Settings

Class Overview

Provides various preferences affecting Leanback runtime behavior.

Note this class is not thread safe and its methods should only be invoked from the UI thread

Summary

Constants
String PREFER_STATIC_SHADOWS
Public Methods
boolean getBoolean(String key)
Returns the boolean preference for the given key.
static Settings getInstance(Context context)
Returns the singleton Settings instance.
void setBoolean(String key, boolean value)
Sets the boolean preference for the given key.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String PREFER_STATIC_SHADOWS

Constant Value: "PREFER_STATIC_SHADOWS"

Public Methods

public boolean getBoolean (String key)

Returns the boolean preference for the given key.

public static Settings getInstance (Context context)

Returns the singleton Settings instance.

public void setBoolean (String key, boolean value)

Sets the boolean preference for the given key. If an app uses this api to override a default preference, it must do so on every activity create.