blob: 02dfee5b7fa0615581f6cd9a14dfc536cf38903a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="44dp"
android:topRightRadius="44dp"
android:bottomLeftRadius="44dp"
android:bottomRightRadius="0px"/>
<solid android:color="#FF0288D1"/>
<size
android:height="88dp"
android:width="88dp"/>
</shape>
|