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.
在时钟应用程序中并处于分屏模式并展开时,展开部分的背景颜色与应用程序的其余部分一样为蓝色。我指的是红圈部分。
在我的应用程序中,扩展部分颜色为白色,如何将其更改为自定义颜色?
您可以通过设置窗口的背景来做到这一点。
在您的 xml 样式中:
<style name="YourTheme"> <item name="android:windowBackground">@color/your_color</item> </style>
或者您可以以编程方式执行此操作:
getWindow().setBackgroundDrawableResource(R.color.your_color);