반응형


1. drawable 폴더에 xml 파일 추가


<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    

    <solid android:color="@color/component_title"/>

    

    <corners android:radius="10dp" />

    

    <padding 

        android:bottom="10dp"

        android:left="10dp"

        android:right="10dp"

        android:top="10dp"/>


</shape>



여기서 shape 태그에 oval, line으로 바꿀 수도 있다.

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">


점선으로 사용하려면 <solid> 태그 대신에 <stroke>태그를 이용한다.

지정 속성은 dashWidth로 너비를 dashGap으로 점선 간격을 지정할 수 있다.




2. layout 에 background 속성으로 지정


    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:gravity="center"

        android:background="@drawable/layout_roundconer"

        android:orientation="vertical" >

반응형

WRITTEN BY
데르벨준

,