728x90
뷰의 모서리를 둥글게 만들어주려면 커스텀 모양을 만들어주어야합니다!
Drawable에 xml파일을 만들어주어 버튼 모양을 만들어줍시다!
solid_button.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid
android:color="#BBCAFF"/>
<corners
android:radius="50dp"/>
</shape>
그리고 이렇게 만든 모양을 버튼에 입혀주면 끝!
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<Button
android:text="일반 버튼"
android:layout_width="200dp"
android:layout_height="100dp"/>
<Button
android:text="둥근 버튼"
android:layout_width="200dp"
android:layout_height="100dp"
android:background="@drawable/solid_button"/>
</LinearLayout>
728x90
'안드로이드' 카테고리의 다른 글
[android][kotlin] Json과 RecyclerView (0) | 2021.02.17 |
---|---|
[android][xml] TabLayout bottom에 위치시키기 (0) | 2021.02.07 |
[android] [kotlin] Retrofit을 사용한 로그인 서비스 (0) | 2021.01.06 |
[android] [kotlin] TabLayout과 ViewPager사용하기 (0) | 2021.01.06 |
[android] [kotlin] Fragment 사용하기 (1) | 2020.12.31 |
댓글