让自定义主题使用空背景(Android lint 建议)
我正在阅读新的 Android Lint 规则,我发现为了防止过度绘制,我应该使带有背景的布局使用带有空背景的主题,以防止在我只是要覆盖它时绘制背景。问题是,如何定义具有空背景的自定义主题?
尝试 1 失败(无法编译):
<style name="NoTitleBarNoBackground" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">null</item>
</style>
尝试 2 失败(警告仍然存在):
<style name="NoTitleBarNoBackground" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">#00000000</item>
</style>
Im reading about the new Android Lint rules, and I find to prevent overdraw I should make my layouts with a background use a theme with null background, to prevent a background to be drawn if Im just gonna overwrite it. The problem is, how do I define a custom theme with null background?
Fail attempt 1 (doesn't compile):
<style name="NoTitleBarNoBackground" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">null</item>
</style>
Fail attempt 2 (warning persists):
<style name="NoTitleBarNoBackground" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">#00000000</item>
</style>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试一下:
希望这会有所帮助!
You can try this:
Hope this helps!