0

There seems to be alot of issues using PreferenceFragmentCompat. I have set the PreferenceThemeOverlay. But however, it seems that the Titles are too big. The EditTextPreference tag can't understand inputType.

In general. It doesn't seem to have been solved with Android support version 23.1.

Maybe someone has a way to solve this problem? Thanks

madlymad
  • 6,367
  • 6
  • 37
  • 68
Khiem-Kim Ho Xuan
  • 1,301
  • 1
  • 22
  • 45

1 Answers1

1

experienced unexpected paddings in PreferenceFragmentCompat.

had to clear the paddings on the recyclerview:

@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    // FIX padding
    if (getListView() != null) {
        getListView().setPadding(0, 0, 0, 0);
    }
}
cwiesner
  • 934
  • 1
  • 8
  • 24