-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MOBILE-2498: Provide custom Bank Container background for sample theme (
#111) Co-authored-by: anatolijs.petjko <anatolijs.petjko@kevin.eu>
- Loading branch information
1 parent
c6dfa2b
commit ae7077a
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
sample/src/main/res/drawable/bank_list_item_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,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="?colorControlHighlight"> | ||
<item> | ||
<selector> | ||
<item android:state_selected="true"> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="?colorSurface" /> | ||
<corners android:radius="24dp" /> | ||
<stroke | ||
android:width="2dp" | ||
android:color="?colorControlHighlight" /> | ||
</shape> | ||
</item> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="?colorSurface" /> | ||
<corners android:radius="24dp" /> | ||
<stroke | ||
android:width="2dp" | ||
android:color="?colorControlNormal" /> | ||
</shape> | ||
</item> | ||
</selector> | ||
</item> | ||
</ripple> |
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