これが私のコードです
<RelativeLayout
android:id="@+id/layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/black_strip_top"
android:layout_width="wrap_content"
android:layout_above="@id/left_strip"
android:layout_height="2dp"
android:background="@color/black" />
<ImageView
android:id="@+id/black_strip_below"
android:layout_width="wrap_content"
android:layout_below="@id/left_strip"
android:layout_height="2dp"
android:background="@color/black" />
<ImageView
android:id="@+id/left_strip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/left_strip" />
<ImageView
android:id="@+id/right_strip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/image"
android:src="@drawable/right_strip" />
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY" />
</RelativeLayout>
画像の上下に2dpの黒い帯が欲しいです。しかし、私はそれを得ることができません。私を助けてください。