PreferenceFragmentCompat在PreferenceCategory上有填充,我无法摆脱

时间:2018-07-25 12:20:51

标签: android android-appcompat android-preferences preferencefragment androidx

所以我一直在尝试使用androidx.preference.PreferenceFragmentCompat创建设置活动,并且一切正常。

但是由于某种原因,在偏好类别和偏好本身上都存在一些填充。我通过使用app:iconSpaceReserved =“ false”摆脱了首选项的填充,但这似乎不适用于类别。

Image

我尝试了所有各种主题,PreferenceThemeOverlay.v14.Material等,但它们似乎没有什么作用

这是我的所有代码!

SettingsActivity.java

import android.os.Bundle;

import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;

public class SettingsActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_settings);

        Toolbar toolbar = findViewById(R.id.settings_toolbar);
        setSupportActionBar(toolbar);
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.setDisplayHomeAsUpEnabled(true);
            actionBar.setDisplayShowTitleEnabled(false);
        }

    }
}

activity_settings.xml

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SettingsActivity">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/settings_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            style="@style/ToolbarTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/title_settings"
            android:textColor="@color/font_dark_primary" />

    </androidx.appcompat.widget.Toolbar>

    <fragment
        android:name="com.henrytwist8gmail.fullcart.SettingsTestFragment"
        android:tag="settings_fragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@id/settings_toolbar" />

</androidx.constraintlayout.widget.ConstraintLayout>

SettingsTestFragment.java

import android.os.Bundle;

import androidx.preference.PreferenceFragmentCompat;

public class SettingsTestFragment extends PreferenceFragmentCompat {

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

        setPreferencesFromResource(R.xml.preferences_test, rootKey);
    }
}

preferences_test.xml

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="test" >

        <Preference android:title="testPref" />
    </PreferenceCategory>

</PreferenceScreen>

我的依赖对象是...

implementation 'com.google.android.material:material:1.0.0-beta01'
implementation 'androidx.preference:preference:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

感谢您的帮助。

6 个答案:

答案 0 :(得分:46)

实际上,还有一个更好的技巧可以解决此问题,同时还可以覆盖资源:

创建- (IBAction)NFASoldclick:(id)sender { if(_NFASDD.isOn) { self.view1heightConstraints.constant=0.0; // [self.view1 setNeedsUpdateConstraints]; NSLog(@"HIDE layout"); } else { self.view1heightConstraints.constant=730; // [self.view1 setNeedsUpdateConstraints]; NSLog(@"show layout"); } }

res/values-sw360dp-v13/values-preference.xml

<?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="http://schemas.android.com/tools"> <bool name="config_materialPreferenceIconSpaceReserved" tools:ignore="MissingDefaultResource,PrivateResource">false</bool> <dimen name="preference_category_padding_start" tools:ignore="MissingDefaultResource,PrivateResource">0dp</dimen> </resources> 为所有<bool>固定了iconSpacePreserved的默认值; Preference修复了<dimen>

答案 1 :(得分:5)

我通过一种解决样式的方法来解决。它适用于 PreferenceCategory

对于首选项,只需使用:app:iconSpaceReserved =“ false”。

[styles.xml]

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="preferenceTheme">@style/AppPreferenceTheme</item>
</style>

<style name="AppPreferenceTheme" parent="@style/PreferenceThemeOverlay.v14.Material">
    <item name="preferenceCategoryStyle">@style/FixForPreferenceCategoryStyle</item>

    <!-- <item name="android:textColor">#ffffffff</item> -->
    <!-- <item name="android:textColorSecondary">#b3ffffff</item> -->
    <!--when the check box is checked-->
    <!--<item name="colorControlNormal">#FF4081</item>-->
    <!--when the check box is unchecked -->
    <!--<item name="colorControlActivated">#81FF40</item>-->
</style>

<style name="FixForPreferenceCategoryStyle" parent="@style/Preference.Category.Material">
    <item name="android:layout">@layout/_preference_category_material</item>
</style>

<color name="_preference_fallback_accent_color">@color/colorAccent</color>

[_ preference_category_material.xml] 是从“ @ layout / preference_category_material”复制的。

android:paddingLeft =“ 0dp” 替换 @ dimen / preference_category_padding_start 。添加自定义颜色 @ color / _preference_fallback_accent_color

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft">

    <LinearLayout
        android:id="@+id/icon_frame"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="start|center_vertical"
        android:orientation="horizontal">
        <android.support.v7.internal.widget.PreferenceImageView
            android:id="@android:id/icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:maxHeight="18dp"
            app:maxWidth="18dp"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="0dp"><!-- SET to 0dp -->
        <!--android:paddingLeft="@dimen/preference_category_padding_start"-->

        <TextView
            android:id="@android:id/title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:paddingRight="?android:attr/listPreferredItemPaddingRight"
            android:textAlignment="viewStart"
            android:textColor="@color/_preference_fallback_accent_color"/>
        <TextView
            android:id="@android:id/summary"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ellipsize="end"
            android:singleLine="true"
            android:textColor="?android:attr/textColorSecondary"/>
    </LinearLayout>

</FrameLayout>

答案 2 :(得分:1)

该修复程序当前以Alpha版本发布。您可以使用

implementation 'androidx.preference:preference:1.1.0-alpha01'

或build.gradle中最新发布的版本

答案 3 :(得分:0)

如果使用 AndroidX ,则只需在XML中的“首选项”和“首选项类别”中添加以下属性,即可添加/删除多余的填充:

 

const str = `id=0345 f1() status=1;
id=7645 f2() status=3;`
const arr = str.split(";\n");
console.log(arr);

<androidx.preference.PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"> <Preference ... app:iconSpaceReserved="true/false" .../> </androidx.preference.PreferenceScreen> 添加了额外的填充,true删除了它。

答案 4 :(得分:0)

此错误已在androidx首选项的最新版本中修复

在您的 Build.Gradle

中尝试遵循依赖性
    implementation 'androidx.preference:preference:1.1.0'

答案 5 :(得分:0)

我发现,以编程方式进行操作比处理样式更容易:

private fun Preference.removeIconSpace() {
    setIconSpaceReserved(false)
    if (this is PreferenceGroup) {
        for (i in 0 until preferenceCount) {
            getPreference(i).removeIconSpace()
        }
    }
}

override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
    setPreferencesFromResource(R.xml.settings, rootKey)
    …
    preferenceScreen.removeIconSpace()
}