-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added drawable for suggestion button background
- Loading branch information
1 parent
4a3cb97
commit 681ff8b
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
app/src/main/res/drawable/gender_suggestion_button_left_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="@android:color/transparent"> | ||
<item android:id="@+id/phone_emoji_color"> | ||
<layer-list> | ||
<item android:id="@+id/button_background_shape"> | ||
<shape android:shape="rectangle"> | ||
<corners | ||
android:topLeftRadius="@dimen/command_button_corner_radius" | ||
android:topRightRadius="0dp" | ||
android:bottomLeftRadius="@dimen/command_button_corner_radius" | ||
android:bottomRightRadius="0dp" /> | ||
</shape> | ||
</item> | ||
</layer-list> | ||
</item> | ||
</ripple> |
17 changes: 17 additions & 0 deletions
17
app/src/main/res/drawable/gender_suggestion_button_right_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="@android:color/transparent"> | ||
<item android:id="@+id/phone_emoji_color"> | ||
<layer-list> | ||
<item android:id="@+id/button_background_shape"> | ||
<shape android:shape="rectangle"> | ||
<corners | ||
android:topRightRadius="@dimen/command_button_corner_radius" | ||
android:topLeftRadius="0dp" | ||
android:bottomRightRadius="@dimen/command_button_corner_radius" | ||
android:bottomLeftRadius="0dp" /> | ||
</shape> | ||
</item> | ||
</layer-list> | ||
</item> | ||
</ripple> |