Added big app widget.
This commit is contained in:
parent
ff41a67448
commit
14204d1789
14 changed files with 381 additions and 18 deletions
8
app/src/main/res/drawable/shadow_down_strong.xml
Normal file
8
app/src/main/res/drawable/shadow_down_strong.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="#88000000"
|
||||
android:startColor="#00000000" />
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/shadow_up_strong.xml
Normal file
8
app/src/main/res/drawable/shadow_up_strong.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="#88000000"
|
||||
android:startColor="#00000000" />
|
||||
</shape>
|
||||
9
app/src/main/res/drawable/widget_selector.xml
Normal file
9
app/src/main/res/drawable/widget_selector.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@color/ripple_material_dark" android:state_activated="true" android:state_pressed="true" />
|
||||
<item android:drawable="@color/ripple_material_dark" android:state_activated="true" />
|
||||
<item android:drawable="@color/ripple_material_dark" android:state_pressed="true" />
|
||||
<item android:drawable="@android:color/transparent" />
|
||||
|
||||
</selector>
|
||||
Loading…
Add table
Add a link
Reference in a new issue