Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 랜덤ID
- lifecyclescope
- Kotlin
- RealtimeDB
- MaterialButton
- ButtonWithButton
- Dialog
- Activity
- Imageview
- button
- 팝업액티비티
- OutlinedButton
- EditText
- androidstudio
- 뷰바인딩
- ROOM
- nav_graph
- 안드로이드스튜디오
- BottomSheetDialog
- firebase
- textview
- firebasefunctions
- ArrayList
- 코틀린
- 안드로이드 스튜디오
- FRAGMENT
- ViewModel
- 밑줄
- 안드로이드
- Android
Archives
- Today
- Total
안드로이드 앱 개발
버튼(Button) 커스터마이징 / MaterialButton 포함 본문
1. drawable 폴더에 xml 생성
1-1 곡선만
ex) rounded button
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp" android:shape="rectangle" >
<solid android:color="#ebbdc5" />
<corners android:bottomLeftRadius="50dp"
android:bottomRightRadius="50dp"
android:topLeftRadius="50dp"
android:topRightRadius="50dp" />
</shape>
2. 버튼 클릭시 이펙트 주기
2-1 ripple effect
[안드로이드/JAVA] Error inflating class com.google.android.material.button.MaterialButton - JooTC
2-2 리플효과없는 버튼효과 주기
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false">
<shape
android:padding="10dp"
android:shape="rectangle" >
<solid android:color="#ebbdc5" />
<corners
android:bottomLeftRadius="50dp"
android:bottomRightRadius="50dp"
android:topLeftRadius="50dp"
android:topRightRadius="50dp" />
</shape>
</item>
<item android:state_pressed="true">
<shape
android:padding="10dp"
android:shape="rectangle" >
<solid android:color="#fff4eb" />
<corners
android:bottomLeftRadius="50dp"
android:bottomRightRadius="50dp"
android:topLeftRadius="50dp"
android:topRightRadius="50dp" />
</shape>
</item>
</selector>
* Material Button의 그림자 없애기
xml 속성에 추가
android:stateListAnimator="@null"