<?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>
반응형
'Android' 카테고리의 다른 글
마법같은 애니메이션 Lottie 에 대해서 (0) | 2021.01.19 |
---|---|
코틀린 retrofit2 공부 (0) | 2020.11.16 |
안드로이드 - service 정리 (0) | 2020.11.14 |
안드로이드 이중스크롤뷰 (0) | 2020.08.24 |
안드로이드의 Context 개념에 대한 개인적인 정리 (0) | 2020.07.14 |
프래그먼트 화면에서 다른 액티비티로 intent하기 (0) | 2020.07.14 |
Android 공부 근황 #1 (0) | 2020.07.05 |
WebView 만들기 (0) | 2020.06.29 |