Skip to content

Commit e8338a5

Browse files
committed
Use bordered mini keyboard background shape
1 parent 6a6b70d commit e8338a5

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<selector xmlns:android="http://schemas.android.com/apk/res/android">
33
<!--used after long pressing a key to highlight the currently selected key alternative on minikeyboard-->
4-
<item android:drawable="@drawable/minikeyboard_selected_background" android:state_focused="true"/>
4+
<item android:drawable="@drawable/minikeyboard_selected_background_outlined" android:state_focused="true"/>
55
<item android:drawable="@drawable/key_background_outlined"/>
66
</selector>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item android:id="@+id/button_background_shape" android:bottom="@dimen/small_margin" android:left="@dimen/tiny_margin" android:right="@dimen/tiny_margin" android:top="@dimen/small_margin">
4+
<shape android:shape="rectangle">
5+
<solid android:color="@color/color_primary" />
6+
<corners android:radius="@dimen/medium_margin" />
7+
</shape>
8+
</item>
9+
</layer-list>

0 commit comments

Comments
 (0)