Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • app
  • src
  • main
  • res
  • drawable
  • ui_black.xml
Find file
BlameHistoryPermalink
  • yu's avatar
    2017/10/14 第三次提交 · da9877a5
         消息还未完善,另外还有些许小bug
    yu committed 7 years ago
    da9877a5
ui_black.xml 734 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!--阴影效果-->
    <item
        android:gravity="bottom"
        >
        <shape>

            <size android:height="5dp"/>
            <padding android:bottom="5dp"/>
            <gradient
                android:angle="-90"
                android:endColor="@android:color/transparent"
                android:startColor="#ff000000"/>
        </shape>
    </item>

    <!--底边-->
<item
    android:gravity="bottom">
    <shape android:shape="rectangle">

        <padding android:bottom="1dp"/>
        <size android:height="1dp"/>
        <solid android:color="#bbb"/>
    </shape>
    </item>



</layer-list>