안드로이드 스튜디오 원형이미지 생성(Circularimageview)

 계발에서 개발까지 

 

Circularimageview로 원형 이미지 만들기

 

위에 사진처럼 이미지를 원형으로 간단하게 생성하는 방법을 알아보겠습니다.

 

build.gradle(app)

dependencies {
  
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
 
}

모듈앱수준에 위에 라이브러리를 추가해줍니다.

 

activity_main.xml

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:gravity="center"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">


    <LinearLayout
        android:layout_width="wrap_content"
        android:background="#000"
        android:layout_height="wrap_content">


    <com.mikhaellopez.circularimageview.CircularImageView
        android:id="@+id/profile_image"
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:civ_border_width="1.5dp"
        app:civ_shadow="false"
        app:srcCompat="@drawable/deum" />

</LinearLayout>
</LinearLayout>

 

CircularimageView를 사용하여 적절하게 원하시는 위치에 이미지를 원형으로 생성하여 사용하시면됩니다.

 

수고하셨습니다 ★

더 많은 정보

 https://deumdroid.tistory.com/ 

 

댓글

Designed by JB FACTORY