Example usage for Java android.os SystemProperties fields, constructors, methods, implement or subclass
The text is from its open source code.
String | get(@NonNull String key) Get the String value for the given key . |
String | get(@NonNull String key, @Nullable String def) Get the String value for the given key . |
boolean | getBoolean(@NonNull String key, boolean def) Get the value for the given key , returned as a boolean. |
int | getInt(@NonNull String key, int def) Get the value for the given key , and return as an integer. |
void | set(@NonNull String key, @Nullable String val) Set the value for the given key to val . |