투케이2K

584. (Android/Xml) drawable 폴더에 커스텀 테두리 둥글게 및 배경 색상 설정 xml 생성 - custom radius background 본문

Android

584. (Android/Xml) drawable 폴더에 커스텀 테두리 둥글게 및 배경 색상 설정 xml 생성 - custom radius background

투케이2K 2023. 6. 21. 22:52

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

 

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- ====================================================== -->
    <!--
    파일 : drawable 폴더에 생성 >> background_custrom_round_line_black_bg_white.xml
    설명 : 커스텀 배경 색상 및 테두리 지정
    -->
    <!-- ====================================================== -->


    <!-- ====================================================== -->
    <!-- 배경색 [Background Color] -->
    <solid android:color="#fff" />
    <!-- ====================================================== -->


    <!-- ====================================================== -->
    <!-- 테두리 선[Border] 길이 및 색 -->
    <stroke android:width="3dp" android:color="#000" />
    <!-- ====================================================== -->


    <!-- ====================================================== -->
    <!-- 모서리 [Corner] 둥글게 -->
    <!--
    android:radius (전체)
    topRightRadius(위 오른쪽)
    topLeftRadius(위 왼쪽)
    -->
    <corners android:radius="5dp" />
    <!-- ====================================================== -->

</shape>

 

반응형
Comments