undo Fade by setting alpha value for View - Android User Interface

Android examples for User Interface:View Fade

Description

undo Fade by setting alpha value for View

Demo Code


//package com.java2s;

import android.view.View;

public class Main {
    public static void undoFade(View view) {
        view.setAlpha(1f);/*w  ww  . j  av  a  2s  .c o m*/
    }
}

Related Tutorials