res/drawable에 xml 파일을 만든후 아래 내용을 넣는다.
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="@color/white" />
<padding
android:left="10dp"
android:right="10dp"
android:bottom="10dp"
android:top="10dp"/>
<stroke
android:width="1dp"
android:color="@color/royal_blue" />
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp" />
</shape>
그후 테두리를 지정하고 싶은 객체에 아래와같이 배경을 지정하면 테두리가 적용된다.
android:background="@drawable/customlayout_button_main"
'프로그래밍 > Android' 카테고리의 다른 글
[Android] 한글만 입력할수있도록 하는 코드 (0) | 2022.07.28 |
---|---|
[Android] 버튼 클릭시 색변경 (0) | 2022.07.28 |
[Android] 커스텀 백그라운드 설정시 백그라운드 색이 바뀌지 않을때 해결법 (0) | 2022.07.27 |
[Android] 플레이스토어 업로드 스크린샷 제작 사이트 (0) | 2022.07.24 |
[Android] Zxing을 이용해 바코드를 스캔하는 코드(가로, 세로 스캔) (0) | 2022.07.20 |
댓글