I designed one layout which have total 4 RelativeLayout one is outer cover and 3 are child of it. When I put White color in the outer layout than no spaces are left but when I put 9patch image as drawable image than little default padding/margin are left. Is there any properly which solve the padding/margin issue? I have tried margin negative but it will hide bit layout I think it is not proper solution, here is my layout

when I put white color as background than my layout look like
Here is the following code of my layout
<RelativeLayout
android:id="@+id/DetailSection1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/HeaderLayout"
android:layout_toLeftOf="@+id/DetailSection2"
>
<TextView
android:id="@+id/lblRestaurantName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/DetailSection1"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:textColor="@color/heding_font"
android:textSize="@dimen/headingFont"
android:text="Restaurant Name" />
<ImageView
android:id="@+id/imgpin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/lblRestaurantName"
android:layout_margin="5dp"
android:src="@drawable/pin" />
<TextView
android:id="@+id/lblAddress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/lblRestaurantName"
android:layout_marginTop="5dp"
android:layout_toRightOf="@+id/imgpin"
android:text="Address"
android:textColor="@color/restaurant_list_font"
android:textSize="@dimen/lableNormalFont"
/>
<ImageView
android:id="@+id/imgphone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/lblAddress"
android:layout_margin="5dp"
android:src="@drawable/phn" />
<TextView
android:id="@+id/lblMobile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/lblAddress"
android:layout_marginTop="5dp"
android:layout_toRightOf="@+id/imgphone"
android:text="Mobile"
android:textColor="@color/restaurant_list_font"
android:textSize="@dimen/lableNormalFont"
/>
<ImageView
android:id="@+id/imgstar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/lblMobile"
android:layout_margin="5dp"
android:src="@drawable/star" />
<TextView
android:id="@+id/lblStar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/lblMobile"
android:layout_marginTop="5dp"
android:layout_toRightOf="@+id/imgstar"
android:text="Star"
android:textColor="@color/restaurant_list_font"
android:textSize="@dimen/lableNormalFont"
/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/DetailSection2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignBottom="@+id/DetailSection1"
android:layout_toLeftOf="@+id/DetailSection3"
android:layout_toRightOf="@+id/lblStar" >
<ImageView
android:id="@+id/imgmore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:src="@drawable/read_more" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/DetailSection3"
android:layout_width="95dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/HeaderLayout"
android:layout_gravity="center"
android:layout_centerInParent="true"
android:background="@drawable/photo_cover" >
<ImageView
android:id="@+id/imgRestaurant"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/lblMobile"
android:layout_margin="5dp"
android:src="@drawable/rihanna" />
</RelativeLayout>
</RelativeLayout>




