gpt4 book ai didi

android - 偏好 fragment 中的图标不适应夜间模式

转载 作者:行者123 更新时间:2023-12-03 22:01:55 27 4
gpt4 key购买 nike

我正在编写一个 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=""但无论我做什么,图标颜色都保持白色。
在其他 Activity 中,使用 android:tint="" 的解决方法确实有效。

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

最佳答案

解决这个问题的方法是为 fillColor 定义一个资源属性。 .另外,如果我没记错的话,tint您在矢量的 XML 中定义的内容要么覆盖,要么对 SVG 可绘制对象没有影响。我的drawables没有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 , textColorTertiary来自 ?android:attr对于不同的色调。

关于android - 偏好 fragment 中的图标不适应夜间模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59218581/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com