Added "Circle" widget
This commit is contained in:
parent
b2e1ab2128
commit
e778e50073
19 changed files with 307 additions and 19 deletions
|
@ -4,7 +4,6 @@ appWidgetRadius attribute value
|
|||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners android:radius="16dp" />
|
||||
<solid android:color="?android:attr/colorBackground" />
|
||||
</shape>
|
5
app/src/main/res/drawable/circle_widget_background.xml
Normal file
5
app/src/main/res/drawable/circle_widget_background.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/widget_md3_button_bg_color" />
|
||||
</shape>
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<solid android:color="?colorSurface"/>
|
||||
<corners android:radius="28dp" />
|
||||
</shape>
|
5
app/src/main/res/drawable/widget_button_background.xml
Normal file
5
app/src/main/res/drawable/widget_button_background.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/widget_md3_button_bg_color"/>
|
||||
<corners android:radius="16dp" />
|
||||
</shape>
|
Loading…
Add table
Add a link
Reference in a new issue