jak zmienić kolor granicy układu względnego?

jak zmienić względny kolor obramowania układu? to jest mój kod poniżej, chcę tylko pokazać kolor obramowania czarny, ale pokazuje wszystkie względne czarne układy. chcę tylko pokazać względny układ białego koloru tylko borde będzie czarny co zrobię?

<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/border5">
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
     <item> 
         <shape android:shape="rectangle">
              <solid android:color="#000000" /> 
         </shape>
     </item>   
     <item android:left="1dp"  android:top="1dp" android:bottom="2dp" >  
         <shape android:shape="rectangle"> 
         </shape>
      </item>    
</layer-list> 

questionAnswers(1)

yourAnswerToTheQuestion