prepare for new library preference

This commit is contained in:
dkanada 2020-08-29 19:11:40 +09:00
commit 518352f7a0
6 changed files with 18 additions and 18 deletions

View file

@ -123,14 +123,14 @@ public final class PreferenceUtil {
}
}
public final boolean getRememberLastTab() {
return mPreferences.getBoolean(REMEMBER_LAST_TAB, true);
}
public final int getPageSize() {
return Integer.parseInt(mPreferences.getString(PAGE_SIZE, "100"));
}
public final boolean getRememberLastTab() {
return mPreferences.getBoolean(REMEMBER_LAST_TAB, true);
}
public final int getLastTab() {
return mPreferences.getInt(LAST_TAB, 0);
}