Android/개념 및 예제2019. 3. 1. 21:54Android 예제 - 모서리 둥근 버튼 만들기( MaterialButton )
매터리얼(Material) 컴포넌트인 MaterialButton를 사용하여 모서리가 둥근 버튼을 만드는 방법입니다. 1. build.gradle에 com.android.support:design을 추가합니다. dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:design:28.0.0' testImplementation 'junit:jun..