728x90

1. drawable xml file 생성

먼저 res/drawable 폴더에 우클릭을 하여 Drawable resource file을 생성한다.

File name은 본인이 원하는대로 설정하고 Ok를 눌러준다.

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <stroke
        android:color="#000000"
        android:width="1dp"/>
    <solid
        android:color="#ffffff" />
    <size
        android:height="100dp"
        android:width="100dp" />
</shape>

stroke는 선의 색과 두께를 설정하고, solid는 배경 색을 설정, size는 크기를 설정한다.

2. TextView xml

<TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="hi"
            android:gravity="center"
            android:background="@drawable/oval"/>

위와 같이 코드를 작성하면 아래같이 적용된 것을 볼 수 있다.

728x90

+ Recent posts