PreferenceFragmentCompat为首选项添加边距

时间:2019-11-21 08:22:51

标签: android androidx preferencefragment

考虑以下示例:

android中的最小活动是将此布局扩展为root:

<!-- FILE activity_preference.xml -->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:id="@+id/settings_container"/>

</LinearLayout>

在活动的onCreate中:

setContentView(R.layout.activity_preference);

然后我想用我的PreferenceFragmentCompat替换 settings_container 。 我正在使用当前的androidx Jetpack库,它进入了应用程序的gradle文件:

implementation 'androidx.preference:preference:1.1.0'

我还创建了一个自定义的PreferenceFragmentCompat来满足我的需要,但是现在并没有做太多事情:

public class MyPreferenceFragmentCompat extends PreferenceFragmentCompat {   

    @Override
    public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {

        // get the screen
        PreferenceScreen preferenceScreen = getPreferenceManager().createPreferenceScreen(getContext());

        // add item(s)
        CheckBoxPreference  item_Confirmation;
        item_Confirmation = new CheckBoxPreference(this);
        item_Confirmation.setKey("config_Confirmation");
        item_Confirmation.setTitle("Confirmation");
        item_Confirmation.setSummary("Confirmation");
        item_Confirmation.setDefaultValue(false);
        preferenceScreen.addPreference(item_Confirmation);

        // set this screen as default
        setPreferenceScreen(preferenceScreen);
    }

以下是活动如何处理我的片段:

getSupportFragmentManager().beginTransaction().replace(R.id.settings_container, new MyPreferenceFragmentCompat()).commit();

但是,在CheckboxItem的前面插入了宽边距:

enter image description here

如何消除这种余量或填充?

1 个答案:

答案 0 :(得分:2)

如果您使用的是 AndroidX ,则可以使用Preference.setIconSpaceReserved(boolean iconSpaceReserved)方法。

因此,您将拥有:

item_Confirmation.setIconSpaceReserved(false);

您还可以查看this答案。