PreferenceFragmentCompat 为偏好项添加边距
PreferenceFragmentCompat adds margin to preference items
考虑这个例子:
android 中有一个最小的 activity,它将此布局扩展为根:
<!-- 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>
在 activity 的 onCreate 中:
setContentView(R.layout.activity_preference);
那我想把settings_container换成我的PreferenceFragmentCompat。
我正在使用当前的 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);
}
以下是 activity 处理我的片段的方式:
getSupportFragmentManager().beginTransaction().replace(R.id.settings_container, new MyPreferenceFragmentCompat()).commit();
然而,在 CheckboxItem 前面插入了较宽的边距:
如何消除这个边距或填充?
如果您使用的是AndroidX,您可以使用Preference.setIconSpaceReserved(boolean iconSpaceReserved)
方法。
因此,您将拥有:
item_Confirmation.setIconSpaceReserved(false);
您也可以查看 答案。
考虑这个例子:
android 中有一个最小的 activity,它将此布局扩展为根:
<!-- 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>
在 activity 的 onCreate 中:
setContentView(R.layout.activity_preference);
那我想把settings_container换成我的PreferenceFragmentCompat。 我正在使用当前的 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);
}
以下是 activity 处理我的片段的方式:
getSupportFragmentManager().beginTransaction().replace(R.id.settings_container, new MyPreferenceFragmentCompat()).commit();
然而,在 CheckboxItem 前面插入了较宽的边距:
如何消除这个边距或填充?
如果您使用的是AndroidX,您可以使用Preference.setIconSpaceReserved(boolean iconSpaceReserved)
方法。
因此,您将拥有:
item_Confirmation.setIconSpaceReserved(false);
您也可以查看