美文网首页
分享一个控件添加阴影的库

分享一个控件添加阴影的库

作者: caym | 来源:发表于2017-04-24 16:13 被阅读228次

github地址:https://github.com/dmytrodanylyk/shadow-layout

该库要求最低sdk版本为:14

使用gradle引用该库到你的项目:

compile 'com.github.dmytrodanylyk.shadow-layout:library:1.0.3'

xml中使用

<com.dd.ShadowLayout
        android:layout_marginTop="16dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:sl_shadowRadius="4dp"
        app:sl_shadowColor="#AA000000"
        app:sl_dx="0dp"
        app:sl_dy="0dp"
        app:sl_cornerRadius="56dp">

    <ImageButton
            android:layout_width="56dp"
            android:layout_height="56dp"
            android:src="@drawable/ic_add_white"
            android:background="@drawable/fab_selector"
            tools:ignore="ContentDescription"/>

</com.dd.ShadowLayout>

相关文章

网友评论

      本文标题:分享一个控件添加阴影的库

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