일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩테스트
- array랑 list
- 다시봐
- 알고리즘 인증
- filternot
- 취준기록
- 알고리즘 인증_1주차
- 알고리즘 인증_2주차
- iPortfolio
- foldindexed
- recyclerview
- 다시 정리해야함
- 다시정리하기
- 코틀린
- Filter
Archives
- Today
- Total
Moments of growth
[Kotlin] AppCompatButton 이미지 넣기 + 버튼 음영 없애기 본문
📌fragment_inhome.xml
- AppCompatButton의 전체 코드
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btn_create"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="19dp"
android:layout_marginTop="27dp"
android:layout_marginEnd="19dp"
android:background="@drawable/rectangle_blue"
android:defaultFocusHighlightEnabled="true"
android:drawableStart="@drawable/ic_headset"
android:drawablePadding="-117dp"
android:fontFamily="@font/applesdcothicneo"
android:paddingLeft="117dp"
android:stateListAnimator="@null" //버튼 음영 없애기
android:text="@string/create"
android:textColor="@color/white"
android:textSize="15sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rv_popularity" />
📌위의 코드 중에서 이미지랑 텍스트 같이 넣고 위치 조절하는 코드 + 버튼 음영 없애는 코드
android:drawableStart="@drawable/ic_headset"
android:drawablePadding="-117dp"
android:text="@string/create"
android:paddingLeft="117dp"
android:stateListAnimator="@null" //버튼 음영 없애기
drawableStart로 아이콘을 넣어준다.
여기서 drawablePadding으로 음수값인 -117dp를 설정하면
마지막으로 paddingLeft로 117dp를 설정해주면
전체적으로 같이 오른쪽으로 117dp만큼 이동돼서 완벽하게 구현된다.
버튼 음영은 stateListAnimator="@null"로 없애주면 된다.
[참고 자료] https://recipes4dev.tistory.com/104
'Android [Kotlin] 💻🤍' 카테고리의 다른 글
[Kotlin] EditText에서 클릭이나 수정 막기 (0) | 2021.11.19 |
---|---|
[Kotlin] ScrollView 맨위로 버튼 누르면 상단으로 가기 (0) | 2021.11.19 |
[Kotlin] ScrollView 안에 RecyclerView 만드는 방법 (0) | 2021.11.19 |
[Kotlin] TabLayout swipe 막기 (0) | 2021.11.19 |
[Kotlin] RecyclerView 가로 모드로 구현 (0) | 2021.11.19 |
Comments