반응형
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"
'IT > Android' 카테고리의 다른 글
안드로이드 스튜디오 / Constraintlayout app 속성 (0) | 2022.03.30 |
---|---|
안드로이드 스튜디오 / Google SignInButton Text 수정 방법 (0) | 2022.03.24 |
안드로이드 스튜디오/ Retrofit/OkHttpClient 로그 찍는 방법 (0) | 2022.03.23 |
안드로이드 스튜디오/ startActivityForResult Deprecated (0) | 2022.03.23 |
안드로이드 스튜디오 / fragment에서 finish() 구현하기 (0) | 2022.03.23 |