您的位置:首页 > Web前端 > CSS

修改ActionBarDrawerToggle小汉堡箭头颜色

2016-06-20 21:12 585 查看
style.xml中

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!--toolbar小汉堡样式-->
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>

<!--小汉堡颜色为白色-->
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@android:color/white</item>
</style>

</resources>


效果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  小汉堡样式