Android PreferenceScreen填充边距

时间:2013-11-22 02:29:12

标签: android

我想删除PreferenceScreen的填充/边距。请参阅下面的XML。

我已经尝试了一切

我删除了android:title以查看它是否会使它变小但看起来像是一个像CheckBoxPreference这样的设置高度。任何帮助都会很棒!

<PreferenceCategory
    android:title="@string/schedule_preferences">

    <PreferenceScreen
        android:key="screen_preference"
        android:title="@string/month1_title_screen"
        android:summary="@string/month1_summary_screen">

        <CheckBoxPreference
            android:title="@string/Day1_title"
            android:summary="@string/Day1_summary"
            android:key="pref_Day1" />

        <!-- THIS ONE -->

        <PreferenceScreen
            android:dependency="pref_Day1"
            android:key="day1_screen"
            android:summary="@string/Extra_Options">

         <!-- THIS ONE -->

            <EditTextPreference
              android:title="@string/Day1_title"
              android:summary="@string/WO_Date"
              android:inputType="number"
              android:key="Day1_date" />
            <EditTextPreference
              android:title="@string/CT_title"
              android:key="Day1_comment" />

     </PreferenceScreen>

 </PreferenceCategory>

0 个答案:

没有答案