«fadeout» 태그된 질문

10
ImageView로 Android 페이드 인 및 페이드 아웃
지금 만들고있는 슬라이드 쇼에 문제가 있습니다. 페이드 인 및 페이드 아웃을 위해 xml로 2 개의 애니메이션을 만들었습니다. fadein.xml <?xml version="1.0" encoding="UTF-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:interpolator="@android:anim/accelerate_interpolator" android:duration="2000"/> </set> fadeout.xml <?xml version="1.0" encoding="UTF-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:interpolator="@android:anim/accelerate_interpolator" android:duration="2000"/> </set> 내가하려는 것은 페이드 효과를 사용하여 ImageView에서 이미지를 변경하여 현재 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.