border in android

Solutions on MaxInterview for border in android by the best coders in the world

showing results for - "border in android"
Cael
04 Oct 2016
1<shape xmlns:android="http://schemas.android.com/apk/res/android">
2    <stroke
3        android:width="1dp"
4        android:color="@color/colorBlack" />
5    <padding
6        android:bottom="1dp"
7        android:left="1dp"
8        android:right="1dp"
9        android:top="1dp" />
10    <corners android:radius="6dp" />
11    <solid android:color="#ffffffff" />
12</shape>
13