I am trying to make a border around my layout like this

But what i am trying just change the layout color.
Not make any border.
My code is
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
>
<stroke android:width="1dp"
android:color="#eedfcc"
android:background="#000080"/>
<corners android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp"
android:topLeftRadius="10dp"
android:topRightRadius="8dp"/>
</shape>
Why it does not work out?
try this:
STEP 1 : Create the file
layout_border.xmlin your project’s drawables directory (res/drawable/layout_border.xml) :STEP 2: