美文网首页
水波纹效果实现

水波纹效果实现

作者: 166f9fc9d18b | 来源:发表于2018-07-23 23:15 被阅读0次

    水波纹兼容5.0以下版本

    水波纹的两种实现方式和兼容

    <Button
                style="@style/Style_Button"
                android:layout_width="300dp"
                android:layout_height="100dp"
                android:text="button" />
    

    1.1: Style 样式方式实现

    //Style统一样式
    <style name="Style_Button">
            <item name="android:background">@drawable/selector_button</item>
    </style>
    
    • 5.0以上——drawable-v21中selector_button
    <?xml version="1.0" encoding="utf-8"?>
    <ripple xmlns:android="http://schemas.android.com/apk/res/android"
       //水波纹颜色
       android:color="@color/colorPrimaryDark">
       //按钮背景颜色
       <item android:drawable="@color/colorAccent" />
    </ripple>
    
    • 兼容5.0以下——drawable中selector_button
    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@color/colorPrimary" android:state_pressed="true"></item>
        <item android:drawable="@color/colorAccent" />
    </selector>
    

    1.2: Theme主题方式实现

    <Button
                android:layout_width="300dp"
                android:layout_height="100dp"
                android:text="button"
                android:theme="@style/MyButton" />
    
    <style name="MyButton" parent="Theme.AppCompat.Light">
            <item name="colorControlHighlight">@color/colorPrimary</item>
            <item name="colorButtonNormal">@color/colorAccent</item>
        </style>
    

    相关文章

      网友评论

          本文标题:水波纹效果实现

          本文链接:https://www.haomeiwen.com/subject/rupsmftx.html