xml animation 예제 :: 안드로이드 설치 및 개발[SSISO Community]
 
SSISO 카페 SSISO Source SSISO 구직 SSISO 쇼핑몰 SSISO 맛집
추천검색어 : JUnit   Log4j   ajax   spring   struts   struts-config.xml   Synchronized   책정보   Ajax 마스터하기   우측부분

안드로이드 설치 및 개발
[1]
등록일:2018-08-19 14:12:27 (0%)
작성자:
제목:xml animation 예제

Reference

http://www.androidhive.info/2013/06/android-working-with-xml-animations/


ex)

<?xml version="1.0" encoding="utf-8"?>

<set

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

android:interpolator="@android:anim/accelerate_interpolator"

>

<scale

android:fromXScale="1.0"

android:toXScale="20.0"

android:fromYScale="1.0"

android:toYScale="20.0"

android:pivotX="50%"

android:pivotY="50%"

android:duration="500"

/>

<alpha

android:fromAlpha="1.0"

android:toAlpha="-1.0"

android:duration="500"

/>

<rotate

android:fromDegrees="0.0"

android:toDegrees="360.0"

android:pivotX="50%"

android:pivotY="50%"

android:duration="500"

/>

</set>




fade_in.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android"

    android:interpolator="@android:anim/accelerate_interpolator" >

    <alpha

        android:duration="2000"

        android:fromAlpha="0.0"

        android:toAlpha="1.0"

         />

</set>



fade_out.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android"

    android:interpolator="@android:anim/accelerate_interpolator" >

    <alpha

        android:duration="2000"

        android:fromAlpha="1.0"

        android:toAlpha="0.0"

         />

</set>

[본문링크] xml animation 예제
[1]
코멘트(이글의 트랙백 주소:/cafe/tb_receive.php?no=34787
작성자
비밀번호

 

SSISOCommunity

[이전]

Copyright byCopyright ⓒ2005, SSISO Community All Rights Reserved.