본문 바로가기

IT/Android

안드로이드 스튜디오 / layout 둥근 모서리 적용

반응형

1. drawable 폴더  안에  layout_radius.xml 파일 생성

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <solid android:color="@color/white"/>
    <corners
        android:radius="5dp"/>
</shape>

shape으로  감싸고 안에 상세 속성들을 넣어준다.

- solid : 뷰의 background 

- corners : 모서리 부분 

              bottomRightRadius, bottomLeftRadius, topLeftRadius, topRightRadius 따로 적용 가능

 

2. layout에 적용 

android:background="@drawable/layout_radius"