Here I have an ImageView with a picture installed in it ... I need to make a black edging around this picture ... Here is one screenshot of how I now have one and how I need it ... how to attach it ...
so now
like that
here is the code
<RelativeLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="54"> <ImageView android:id="@+id/imageView2" android:layout_width="123dp" android:layout_height="160dp" android:layout_marginStart="25sp" android:scaleType="centerCrop" android:src="@drawable/manface" /> <ImageView android:id="@+id/imageView3" android:layout_width="123dp" android:layout_height="160dp" android:layout_alignParentEnd="true" android:layout_alignParentTop="true" android:layout_marginEnd="25sp" android:scaleType="centerCrop" android:src="@drawable/womanface" /> 
