목록ANIMATION (4)
woong's
Android Trasitions API 사용하기 Android Animation 을 좀더 쉽게 사용할수 있는 Trasitions API 가 있어서 정리해 보려 합니다. 앱구성시 자주 쓰일것 같은 애니메이션만 예제로 작성해 보려 합니다. Transitions API 구글은 액티비티간 화면 전환을 위해 Android 5.0부터 이 API를 제공 좋은 소식은 더 아래 버전에서도 사용할 수 있다는 점. Transitions Everywhere는 안드로이드 Transition API의 백포트입니다.(안드로이드 4.0이상 애니메이션 백포트 지원, 안드로이드 2.2이상 API호환가능) 123dependencies { compile "com.andkulikov:transitionseverywhere:1.6.5"}Co..
Slide extend/collapse Animation 사용하기 Colored By Color Scripter™1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162package com.handstudio.android.healthup.util; import android.animation.ValueAnimator;import android.annotation.SuppressLint;import android.view.View;import android.view.ViewGroup; @SuppressLint("NewApi")public class Slid..
Android EditText Shake Animation 사용하기 안녕하세요. 개인어플을 만들다보니 EditText 관련해서 작업하다 포스트를 쓰고 있습니다 . 보통 EditText에 값이 없고 액션을 취하면 값이 없다는 Toast 메세지를 보여주곤 합니다 .하지만 이와같이 Toast 메세지만 보여주면 EditText가 많은경우에는 어떤 EditText가 값이 없는지눈에 확들어오지 않기 때문에 저는 Shake Animation 을 통해서 사용자에게 좀 더 자연스러운 연출을해보고자 이렇게 사용해보고 다른분들도 이용할 수 있도록 포스트를 써보려 합니다 . 사용방법 1. amination xml 작성 이와같이 두개의 anim 을 만들어야 합니다 . cycle_7 anim 이 shake anim 에서 사용 됩..
Android Animation Fade In , Fade out 사용하기 Android Animation 사용에 대해 말씀드리겠습니다 . Animation 중에 서서히 사라지는 효과와 , 서서히 나타나는 효과를 사용해 보았습니다 . Animation 을 xml 로도 구성할수 있고 xml 로 구성해야 Animation을 깔끔하게 정리할수 있는것 같습니다 . 서서히 나타나는 효과 xml Colored By Color Scripter™1234567 서서히 사라지는 효과 xml Colored By Color Scripter™1234567 이렇게 Animation 을 구성할수 있습니다 . 사용방법 Animation 사용방법은 간단합니다 . Colored By Color Scripter™12345Animation..