perform Scale Y Animation - Android Animation

Android examples for Animation:Scale Animation

Description

perform Scale Y Animation

Demo Code


//package com.java2s;
import android.content.Context;

import android.view.View;

import android.view.animation.AnimationUtils;

public class Main {
    public static void performScaleYAnimation(Context context, View view) {
        view.startAnimation(AnimationUtils.loadAnimation(context,
                0x7f04000c));/*from w  w  w  .j a v a2 s.  co  m*/
    }
}

Related Tutorials