首选项中的图标不适合夜间模式

问题描述 投票:1回答:1

我正在使用一个Android应用,并希望进行一次SettingsActivity。我的问题是我的矢量可绘制对象无法使其颜色适应夜间或白天主题。

ic_palette_black_24dp.xml:

<vector android:height="24dp" android:tint="#FFFFFF"
    android:viewportHeight="24.0" android:viewportWidth="24.0"
    android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
    <path android:fillColor="@color/icon_color_on_surface" android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.39 -0.15,-0.74 -0.39,-1.01 -0.23,-0.26 -0.38,-0.61 -0.38,-0.99 0,-0.83 0.67,-1.5 1.5,-1.5L16,16c2.76,0 5,-2.24 5,-5 0,-4.42 -4.03,-8 -9,-8zM6.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,9 6.5,9 8,9.67 8,10.5 7.33,12 6.5,12zM9.5,8C8.67,8 8,7.33 8,6.5S8.67,5 9.5,5s1.5,0.67 1.5,1.5S10.33,8 9.5,8zM14.5,8c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,5 14.5,5s1.5,0.67 1.5,1.5S15.33,8 14.5,8zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
</vector>

values / colors.xml:

<?xml version="1.0" encoding="utf-8"?> 
<resources>
    <color name="icon_color_on_surface">#000000</color>
</resources>

values-night / colors.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="icon_color_on_surface">#FFFFFF</color>
</resources>

并且在我的root_preferences.xml中:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/root_preferences">
    <PreferenceCategory android:title="@string/title_preference_design">

        <ListPreference
            android:entries="@array/preference_list_theme"
            android:entryValues="@array/preference_list_theme_values"
            android:icon="@drawable/ic_palette_black_24dp"
            android:key="list_preference_theme"
            android:tint="@color/icon_color_on_surface"
            android:tintMode="src_atop"
            android:title="@string/preference_category_theme"
            app:icon="@drawable/ic_palette_black_24dp" />
    </PreferenceCategory>
</PreferenceScreen>

[编辑]

这里也是我的SettingsActivity.java,基本上是AndroidStudio的默认设置:

import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Toast;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatDelegate;
import androidx.appcompat.widget.Toolbar;
import androidx.preference.ListPreference;
import androidx.preference.Preference;
import androidx.preference.PreferenceFragmentCompat;
import androidx.preference.PreferenceScreen;

import java.util.ArrayList;

public class SettingsActivity extends AppCompatActivity {

    private ColorHelper colorHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.settings_activity);
        getSupportFragmentManager()
                .beginTransaction()
                .replace(R.id.settings, new SettingsFragment())
                .commit();
        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.setDisplayHomeAsUpEnabled(true);
        }

    }

    public static class SettingsFragment extends PreferenceFragmentCompat {

        @Override
        public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
            // Indicate here the XML resource you created above that holds the preferences
            setPreferencesFromResource(R.xml.root_preferences, rootKey);
        }

        @Override
        public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
            super.onViewCreated(view, savedInstanceState);

        }
    }
}

[/ EDIT]

您可以在root_preferences.xml]中看到,>我已经尝试通过android:tint=""android:tintMode=""进行设置,但是无论我做什么,图标颜色都保持白色。在其他活动中,android:tint=""的解决方法确实有效。

我希望有人可以帮助我。谢谢

我正在使用一个Android应用,并希望进行一次SettingsActivity。我的问题是我的vector drawable无法使其颜色适应夜间或白天主题。 ic_palette_black_24dp.xml:

android android-preferences preferencefragment android-dark-theme
1个回答
1
投票

解决方法是为fillColor定义资源属性。另外,如果我没记错的话,您在向量的XML中定义的tint会被覆盖或对SVG可绘制对象无效。我的可绘制对象没有设置tint颜色,并且fillColor属性对于所有可绘制对象都是动态的。

© www.soinside.com 2019 - 2024. All rights reserved.