반응형
다양한 레이아웃에는 사실 border이 없다.
따라서 LinearLayout 이외 다양한 곳에서도 border를 이용하기 위해 쓸 수 있는 코드이다.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="-2dp"
android:left="1dp"
android:right="1dp"
android:top="-2dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#BDBDBD"/>
</shape>
</item>
</layer-list>
1dp가 되는 부분이 border이 생기게 된다.
반응형
'Basic > Android' 카테고리의 다른 글
안드로이드 Activity Lifecycle (0) | 2019.08.09 |
---|---|
Android Bundle이란? (0) | 2019.08.01 |
안드로이드 레이아웃(Android Layout) 종류와 사용 방법 (0) | 2019.07.11 |
안드로이드 뷰(Android View)란? (0) | 2019.07.10 |
Android에서 여러가지 콜백 방법 (0) | 2019.07.03 |