与“首选项”屏幕上的其他首选项类型相比,SwitchPreference以较小的字体显示

时间:2018-10-24 09:03:22

标签: android android-studio android-layout sharedpreferences

为什么会发生这种情况,以及如何使其以与其他首选项相同的字体大小显示?

这是在Android Studio的设计视图以及设备上的外观。

enter image description here

相应的代码是:

<?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>

0 个答案:

没有答案