[안드로이드] radius: 레이아웃 둥글게 만들기

SHY(code poet)·2024년 3월 25일
0
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#F89AEE"/>
    <corners android:topLeftRadius="15dp"
             android:bottomLeftRadius="15dp"/>
    <stroke android:color="#0C0100" android:width="1dp" />
</shape>

shape: 도형 지정 (rectangle, oval, ring, line)

corners: 모서리 라운딩 지정

  • top/bottom/left/right 지정하여 일부 모서리에만 라운딩 줄 수도 있음

stroke: 테두리 지정

profile
그것을 이해하고자 하기 때문에 결국은 그것을 견디어내게 된다.

0개의 댓글