I don't know how to change the font size of a few preferences. I have tried this post but it didn't work. After doing it, my icon did not show up. This is what it looks like now but I think that the title of the Preference is too big. Here is what my screen currently looks like:
Here is the code for my pref_headers.xml xml file:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<Preference
android:key="@string/key_pref_general"
android:title="@string/label_pref_general"
android:icon="@drawable/ic_person"/>
<Preference
android:key="@string/key_pref_categories"
android:title="@string/label_pref_categories"
android:icon="@drawable/ic_list"/>
<Preference
android:key="@string/key_pref_productivity"
android:title="@string/label_pref_productivity"
android:icon="@drawable/ic_chart"/>
<Preference
android:key="@string/key_pref_delete"
android:title="@string/label_pref_delete"/>
</PreferenceScreen>