Java android.os SystemProperties fields, constructors, methods, implement or subclass

Example usage for Java android.os SystemProperties fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.os SystemProperties.

The text is from its open source code.

Method

Stringget(@NonNull String key)
Get the String value for the given key .
Stringget(@NonNull String key, @Nullable String def)
Get the String value for the given key .
booleangetBoolean(@NonNull String key, boolean def)
Get the value for the given key , returned as a boolean.
intgetInt(@NonNull String key, int def)
Get the value for the given key , and return as an integer.
voidset(@NonNull String key, @Nullable String val)
Set the value for the given key to val .