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.
我想要透明PlaybackControlsRow背景而不是颜色一我尝试将背景颜色设置为#00000000,但它显示了一些灰色背景。在下图中,我想要透明颜色而不是绿色。
PlaybackControlsRow
您应该可以通过在此处覆盖它们的颜色<color name="player_controls_background">#6600FF00</color>并确保在颜色中添加 alpha 来做到这一点(十六进制的前两个数字是 alpha,其余数字是颜色十六进制)。
<color name="player_controls_background">#6600FF00</color>
它们在控件上也有一个阴影覆盖,可以使颜色倾斜。如果使用上面的行看起来不正确,你可以通过覆盖他们的 dimen 来关闭这个阴影<dimen name="lb_playback_controls_z">0dp</dimen>。
<dimen name="lb_playback_controls_z">0dp</dimen>
请让我知道这是否适合您。