Override getDefaultValueType with values based on the preference (#167)

This commit is contained in:
Syer10
2021-08-01 08:43:29 -04:00
committed by GitHub
parent fb862e23e5
commit 5a3621fe39
5 changed files with 20 additions and 1 deletions
@@ -42,4 +42,9 @@ public class ListPreference extends Preference {
public String getValue() { throw new RuntimeException("Stub!"); }
public void setValue(String value) { throw new RuntimeException("Stub!"); }
@Override
public String getDefaultValueType() {
return "String";
}
}