为什么会发生这种情况,以及如何使其以与其他首选项相同的字体大小显示?
这是在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>