일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Coroutine
- 코틀린
- 소울칼리버6
- Linux
- 명심보감
- ASMR
- DART
- Firebase
- 벤자민플랭클린
- Android
- 장자명언
- 이모지메모
- Flutter
- 파이썬
- recyclerview
- bash
- 공자명언
- jetpack compose
- 1인개발자
- 명언모음
- 공부집중
- 오픈소스
- Freesound
- androidx
- 넷플릭스
- Streaming
- 좋은글필사하기
- 이모지
- kotlin
- FSM
Archives
- Today
- Total
Vintage appMaker의 Tech Blog
[kotlin] 확장함수를 이용한 간편한 AlphaAnimation 본문
Source code or Tip/Android(Java, Kotlin)
[kotlin] 확장함수를 이용한 간편한 AlphaAnimation
VintageappMaker 2021. 6. 21. 11:35kotlin에서 확장함수는 많이 사용된다. 특히 귀찮을 정도의 반복적인 코드들을 확장함수로 정해놓으면 간편하게 사용할 수 있다. 다음은 View의 확장함수로 AlphaAnimation을 구현한 함수이다.
fun View.showAndHide(time : Long = 1500){
visibility = View.VISIBLE
startAnimation(
AlphaAnimation(1.0f, 0.0f).apply {
duration = time
fillAfter = true
}
)
}
이렇게 정의를 해놓으면 AlphaAnimation을 아래와 같이 어디에서나 간편하게 사용할 수 있다.
private fun testAlphaAnimation() {
val btnAlphaAni = findViewById<Button>(R.id.btnAlphaAni)
btnAlphaAni.setOnClickListener {
btnAlphaAni.showAndHide(3000)
}
}
'Source code or Tip > Android(Java, Kotlin)' 카테고리의 다른 글
BottomSheetDialogFragment 배경을 투명하게 (0) | 2021.06.29 |
---|---|
[XML] Android Progress Vertical로 만들기 (0) | 2021.06.22 |
[gradle] java 버전에러 - if 문 처리 (e: java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException) (2) | 2021.06.17 |
[kotlin] apply에서 람다 사용시 범위(scope) (0) | 2021.06.12 |
[Android] PopupWindow 사용 - closure 예제 (0) | 2021.05.30 |
Comments