removing a couple more unused key backgrounds
This commit is contained in:
parent
facebe57a5
commit
ccb9d61841
7 changed files with 18 additions and 7 deletions
|
@ -1,12 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
<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_pressed" android:state_pressed="true" />
|
||||||
<item android:drawable="@drawable/btn_keyboard_key_normal" />
|
<item android:drawable="@drawable/btn_keyboard_key_normal" />
|
||||||
|
|
||||||
</selector>
|
</selector>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1,001 B |
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
9
app/src/main/res/drawable/keyboard_enter_background.xml
Normal file
9
app/src/main/res/drawable/keyboard_enter_background.xml
Normal 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>
|
9
app/src/main/res/drawable/keyboard_space_background.xml
Normal file
9
app/src/main/res/drawable/keyboard_space_background.xml
Normal 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>
|
Loading…
Reference in a new issue