4

我正在编写一个 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>

值/colors.xml:

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

值夜/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);

        }
    }
}

[/编辑]

正如您在root_preferences.xml中看到的那样,我已经尝试设置它android:tint=""android:tintMode=""但无论我做什么,图标颜色都保持白色。在其他活动中,解决方法android:tint=""确实有效。

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

4

1 回答 1

6

解决这个问题的方法是为fillColor. 另外,如果我没记错的话,tint您在矢量 XML 中定义的 要么是覆盖,要么对 SVG 可绘制对象没有影响。我的可绘制对象没有tint设置颜色,并且该fillColor属性对于所有可绘制对象都是动态的。

下面,android:fillColor="?android:attr/textColorSecondary"由 Android 系统定义并已由Theme.MaterialComponents.DayNight. 您还可以创建自己的 attr 值。

<vector 
    android:height="24dp" 
    android:viewportHeight="24.0" 
    android:viewportWidth="24.0"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <path 
         android:fillColor="?android:attr/textColorSecondary" 
         android:pathData="..."
    />
</vector>

根据您的用例,您还可以将textColorPrimary, textColorTertiaryfrom?android:attr用于不同的色调。

于 2020-01-19T04:51:24.747 回答