210202

버튼 누르면 살짝 들어갔다 나오게하기 본문

Android

버튼 누르면 살짝 들어갔다 나오게하기

dev210202 2020. 2. 20. 12:08

아래 사이트를 참고해서 기능을 구현했다.

https://github.com/skydoves/ElasticViews

 

skydoves/ElasticViews

:sparkles: An easy way to implement an elastic touch effect for Android. - skydoves/ElasticViews

github.com

사용방법은 다음과 같다.

1. build.gradle에 추가

dependencies {
    implementation "com.github.skydoves:elasticviews:2.0.7"
}

2. xml 파일에 상단에 추가

xmlns:app="http://schemas.android.com/apk/res-auto"

3. 기존에 쓰던 View를 Elastic~ 으로 변경

변경 전 <Button>
변경 후 <com.skydoves.elasticviews.ElasticButton>

버튼이 눌렸다는 것을 확인시키기 좋은 라이브러리같다. 사용법도 쉬워서 자주쓸듯!

Comments