aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/ui/TuningBlockView.java
blob: 2914b461e19fd282e51ba4abf6f1b4b9a94229a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.tv.ui;

import android.animation.Animator;
import android.animation.AnimatorInflater;
import android.animation.AnimatorListenerAdapter;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import android.widget.ImageView;

import com.android.tv.R;
import com.android.tv.common.SoftPreconditions;

/**
 * A view to block the screen while tuning channels.
 */
public class TuningBlockView extends FrameLayout{
    private final static String TAG = "TuningBlockView";

    private ImageView mImageView;
    private Animator mFadeOut;

    public TuningBlockView(Context context) {
        this(context, null, 0);
    }

    public TuningBlockView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public TuningBlockView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        mImageView = (ImageView) findViewById(R.id.image);
        mFadeOut = AnimatorInflater.loadAnimator(
                getContext(), R.animator.tuning_block_view_fade_out);
        mFadeOut.addListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                setVisibility(GONE);
            }
        });
        mFadeOut.setTarget(mImageView);
    }

    /**
     * Sets image to the image view. This method should be called after finishing inflate the view.
     */
    public void setImage(Drawable imageDrawable) {
        SoftPreconditions.checkState(mImageView != null, TAG, "imageView is null");
        mImageView.setImageDrawable(imageDrawable);
    }

    /**
     * Sets the visibility of image view.
     * This method should be called after finishing inflate the view.
     */
    public void setImageVisibility(boolean visible) {
        SoftPreconditions.checkState(mImageView != null, TAG, "imageView is null");
        mImageView.setAlpha(1.0f);
        mImageView.setVisibility(visible ? VISIBLE: GONE);
    }

    /**
     * Returns if the image view is visible.
     * This method should be called after finishing inflate the view.
     */
    public boolean isImageArtVisible() {
        SoftPreconditions.checkState(mImageView != null, TAG, "imageView is null");
        return mImageView.getVisibility() == VISIBLE;
    }

    /**
     * Hides the view with animation if needed.
     */
    public void hideWithAnimationIfNeeded() {
        if (getVisibility() == VISIBLE && isImageArtVisible()) {
            mFadeOut.start();
        } else {
            setVisibility(GONE);
        }
    }

    /**
     * Ends the fade out animator.
     */
    public void endFadeOutAnimator() {
        if (mFadeOut != null && mFadeOut.isRunning()) {
            mFadeOut.end();
        }
    }
}