您的位置:首页技术文章
文章详情页

android - 修改这个颜色怎么修改的

【字号: 日期:2024-09-03 15:33:05浏览:37作者:猪猪

问题描述

android - 修改这个颜色怎么修改的你们这个软件这种颜色是怎么修改的,Android原生默认是白色的

问题解答

回答1:

这种圆形向外扩展的动效来自 Material design,叫做ripple(涟漪)。

要改变它的颜色,一个简单的方法是更改 style:

<style name='AppTheme' parent='Theme.AppCompat.Light.DarkActionBar'> ... <item name='colorControlHighlight'>@color/ripple_material_dark</item> ...</style>

另外你也可以参考这些 SO 的回答:

What should be the color of the Ripple, colorPrimary or colorAccent?

How to change the ripple color of the DrawerToggle (back arrow)

Changing color of Ripple Effect

相关文章: