removing a couple more unused key backgrounds

This commit is contained in:
tibbi 2022-01-17 10:11:34 +01:00
parent facebe57a5
commit ccb9d61841
7 changed files with 18 additions and 7 deletions

View File

@ -1,12 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/btn_keyboard_key_pressed_on" android:state_checkable="true" android:state_checked="true" android:state_pressed="true" />
<item android:drawable="@drawable/btn_keyboard_key_pressed_off" android:state_checkable="true" android:state_pressed="true" />
<item android:drawable="@drawable/btn_keyboard_key_normal_on" android:state_checkable="true" android:state_checked="true" />
<item android:drawable="@drawable/btn_keyboard_key_normal_off" android:state_checkable="true" />
<!-- Normal keys -->
<item android:drawable="@drawable/btn_keyboard_key_pressed" android:state_pressed="true" />
<item android:drawable="@drawable/btn_keyboard_key_normal" />
</selector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1001 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/button_background_shape">
<shape android:shape="rectangle">
<solid android:color="@color/md_grey_800_dark" />
<corners android:radius="4dp" />
</shape>
</item>
</layer-list>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/button_background_shape">
<shape android:shape="rectangle">
<solid android:color="@color/md_grey_800_dark" />
<corners android:radius="4dp" />
</shape>
</item>
</layer-list>