Android의 버튼 UI를 둥글고 싶습니다.
3320 단어 안드로이드
리소스 layout
우선 layout 파일에 Button을 배치.
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:textColor="#ffffffff"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
리소스 drawable
다음에 shape를 사용한 drawable 파일을 작성.
button_style.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="10dip" />
<solid android:color="#ff262626" />
<stroke
android:width="1dp"
android:color="#ffffffff" />
</shape>
작성한 drawable을 layout에 적용
Button의 background 속성에 작성한 drawable를 설정한다.
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:textColor="#ffffffff"
android:background="@drawable/button_style"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
이미지
Reference
이 문제에 관하여(Android의 버튼 UI를 둥글고 싶습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/oyane-t/items/4d2b9c6458b55310f71a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)