이름 그대로 ImageView를 Circle 모양으로 출력하고 싶을 때 사용
1. build.gradle(Module:App)에 라이브러리 추가
implementation 'de.hdodenhof:circleimageview:3.0.0'
2. circleimageview xml 코드
<de.hdodenhof.circleimageview.CircleImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:src="이미지 경로"
app:civ_border_width="Outline Border 두께"
app:civ_border_color="Outline Border 색상"
/>
'곰대생 > Android' 카테고리의 다른 글
Android 개발자 옵션 - USB 디버깅 연결하기 (Feat. 컴퓨터 RSA 키 지문이 뜨지 않을 때) (0) | 2020.12.06 |
---|---|
Android adb 환경변수 설정 (Feat. 연결된 기기 확인) (0) | 2020.12.06 |
Android keystore(jks) 암호 찾기 (0) | 2020.12.05 |
Android 다이얼로그 창 띄우기 (0) | 2020.12.05 |
Android ScrollView 와 ListView (0) | 2020.12.05 |