Blame view
app/src/main/res/drawable/rounded_button.xml
533 Bytes
|
7f095a929
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="@color/login_bg" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:topLeftRadius="8dp"
android:topRightRadius="8dp"
android:bottomLeftRadius="8dp"
android:bottomRightRadius="8dp"
/>
<padding android:top="5dp"
android:bottom="5dp"
android:left="2dp"
android:right="2dp"/>
</shape>
|