Commit 26098f97 authored by Amin's avatar Amin

fix history ui badge

parent 2693c56c
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" > android:shape="rectangle" >
<!-- This is the stroke you want to define -->
<stroke android:width="1dp" <stroke android:width="1dp"
android:color="@color/white"/> android:color="@color/white"/>
<!-- Optional, round your corners -->
<corners android:bottomLeftRadius="21dp" <corners android:bottomLeftRadius="21dp"
android:topLeftRadius="21dp" android:topLeftRadius="21dp"
android:bottomRightRadius="21dp" android:bottomRightRadius="21dp"
android:topRightRadius="21dp" /> android:topRightRadius="21dp" />
<!-- Optional, fill the rest of your background with a color or gradient, use transparent if you only want the border to be displayed-->
<gradient android:startColor="@android:color/white" <gradient android:startColor="@android:color/white"
android:endColor="@android:color/white" android:endColor="@android:color/white"
android:angle="90"/> android:angle="90"/>
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke android:width="1dp"
android:color="@color/white"/>
<corners android:bottomLeftRadius="100dp"
android:topLeftRadius="100dp"
android:bottomRightRadius="100dp"
android:topRightRadius="100dp" />
<gradient android:startColor="@android:color/white"
android:endColor="@android:color/white"
android:angle="90"/>
</shape>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment