为啥 android:colorBackground 在某些设备上不起作用?
Posted
技术标签:
【中文标题】为啥 android:colorBackground 在某些设备上不起作用?【英文标题】:Why doesn't android:colorBackground work on some devices?为什么 android:colorBackground 在某些设备上不起作用? 【发布时间】:2021-12-22 22:29:41 【问题描述】:<resources>
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.Light">
<item name="android:colorBackground">#26A69A</item>
</style>
</resources>
我想知道为什么android:colorBackground
在某些设备上不起作用。我在 API 21 (Not working)
、24 (Not Working)
和 29 (Working)
上运行应用程序。
【问题讨论】:
【参考方案1】:我这样改后现在可以工作了
<resources>
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.Light">
<item name="android:colorBackground">@color/myColor</item>
</style>
</resources>
【讨论】:
以上是关于为啥 android:colorBackground 在某些设备上不起作用?的主要内容,如果未能解决你的问题,请参考以下文章
为啥 DataGridView 上的 DoubleBuffered 属性默认为 false,为啥它受到保护?