Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经通过这个来改变我的标题栏的颜色。我试图弄清楚如何以编程方式切换它?假设如果用户单击一个按钮,我想切换到另一种预定义的颜色。我该怎么做?
您可以通过以编程方式将颜色应用于标题栏来轻松做到这一点。以编程方式更改布局颜色,
textView.setBackgroundColor(R.color.titletextcolor);
在您的按钮单击事件中动态执行此操作,您将获得颜色变化。