如何通过改变主题来改变整个应用程序中文本的颜色

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

我是UI设计的初学者,我正在尝试构建一个可以将主题更改为附加选项的应用程序。当主题切换到黑色工具栏和TabLayout转黑色,我使用默认字体颜色“黑色”,因为适合白色主题。请帮助我,如何设置文本颜色,使其在主题中改变。

android android-studio
1个回答
0
投票

您可以尝试以下

public void onCreate(Bundle savedInstanceState) {
    setTheme(android.R.style.Theme);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_second);
}

主题是你要实施的风格

How to change app default theme to a different app theme?

Check these Doc Please

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