Почему это происходит и как заставить его отображаться с тем же размером шрифта, что и другие параметры?
Вот как это выглядит в представлении дизайна Android Studio и на устройстве.
Соответствующий код:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
...
...
<EditTextPreference
android:key="@string/businessAddr1"
android:maxLength="32"
android:selectAllOnFocus="false"
android:singleLine="true"
android:title="Address Line 1"
android:inputType="textNoSuggestions"/>
<EditTextPreference
android:key="@string/businessAddr2"
android:maxLength="32"
android:selectAllOnFocus="false"
android:singleLine="true"
android:title="Address Line 2"
android:inputType="textNoSuggestions"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/debugString"
android:title="Debug" />
<CheckBoxPreference
android:defaultValue="false"
android:key="check_box_preference_1"
android:title="Check box preference" />
<SwitchPreference
android:defaultValue="false"
android:key="switch_preference_1"
android:title="Switch preference" />
</PreferenceScreen>