adding a generic shortcut icon with Plus sign
This commit is contained in:
parent
55fc7596ba
commit
2c233c6579
2 changed files with 17 additions and 1 deletions
|
@ -7,7 +7,7 @@ buildscript {
|
|||
propMinSdkVersion = 21
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '5.10.5'
|
||||
propVersionName = '5.10.6'
|
||||
kotlin_version = '1.3.21'
|
||||
}
|
||||
|
||||
|
|
16
commons/src/main/res/drawable/shortcut_plus.xml
Normal file
16
commons/src/main/res/drawable/shortcut_plus.xml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:id="@+id/shortcut_plus_background">
|
||||
<shape android:shape="oval">
|
||||
<solid android:color="@color/color_primary"/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item
|
||||
android:bottom="@dimen/medium_margin"
|
||||
android:drawable="@drawable/ic_plus"
|
||||
android:left="@dimen/medium_margin"
|
||||
android:right="@dimen/medium_margin"
|
||||
android:top="@dimen/medium_margin"/>
|
||||
|
||||
</layer-list>
|
Loading…
Reference in a new issue