Android

안드로이드 spinner 테두리와 모서리 둥글게 만들기

최데브 2020. 7. 30. 18:12
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- #f5f5f5" 색으로 채움 -->
    <solid
        android:color="#f5f5f5"/>

    <corners
        android:bottomLeftRadius="12dp"
        android:bottomRightRadius="12dp"
        android:topLeftRadius="12dp"
        android:topRightRadius="12dp" />
    
    <!-- 1dp 크기의 #000000 색 테두리 -->
    <stroke
        android:width="1dp"
        android:color="#000000"/>

</shape>
반응형