implement custom preference category element

This commit is contained in:
dkanada 2021-05-21 08:41:34 +09:00
commit abcb807518
12 changed files with 74 additions and 14 deletions

View file

@ -130,6 +130,14 @@ public final class PreferenceUtil {
}
}
public void setPrimaryColor(int color) {
mPreferences.edit().putInt(PRIMARY_COLOR, color).apply();
}
public void setAccentColor(int color) {
mPreferences.edit().putInt(ACCENT_COLOR, color).apply();
}
public final int getPageSize() {
return Integer.parseInt(mPreferences.getString(PAGE_SIZE, "100"));
}