<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="2dp"
android:color="@color/main_green"/>
<corners android:radius="5dp" />
</shape>
임의의 drawable 를 생성하여 테두리를 조정해주고
android:background="@drawable/rounded_corner_border"
이미지의 백그라운드 속성에 넣어 준 후
itemImageView.clipToOutline = true
코드에서 clipToOutline 옵션을 true로 설정해주면
테두리를 둥글게 만들어 줄 수 있다.