summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar/MediaNotificationGuts.java
blob: 14ce8e19b6462aa588485b3b50ed324bc11f3332 (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
/*
 * Copyright (C) 2015 The CyanogenMod 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.systemui.statusbar;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.Switch;
import android.widget.TextView;
import com.android.systemui.R;
import cyanogenmod.providers.CMSettings;

/**
 * The guts of a media notification revealed when performing a long press.
 */
public class MediaNotificationGuts extends NotificationGuts {

    private static final String TAG = MediaNotificationGuts.class.getSimpleName();

    private ViewGroup mQueueGroup;
    private TextView mText;
    private Switch mSwitch;

    public MediaNotificationGuts(Context context, AttributeSet attrs) {
        super(context, attrs);

        setWillNotDraw(true);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        // do nothing!
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        mQueueGroup = (ViewGroup) findViewById(R.id.queue_group);
        mSwitch = (Switch) findViewById(R.id.queue_switch);
        mSwitch.setChecked(MediaExpandableNotificationRow.isQueueEnabled(getContext()));
        mText = (TextView) findViewById(R.id.switch_label);
        mText.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                mSwitch.toggle();
            }
        });
        mSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                buttonView.setChecked(isChecked);
                CMSettings.System.putInt(getContext().getContentResolver(),
                        CMSettings.System.NOTIFICATION_PLAY_QUEUE,
                        isChecked ? 1 : 0);
            }
        });
    }


    @Override
    public void setActualHeight(int actualHeight) {
        super.setActualHeight(actualHeight);
    }

    @Override
    public int getActualHeight() {
        return getHeight();
    }

    @Override
    public boolean hasOverlappingRendering() {

        // Prevents this view from creating a layer when alpha is animating.
        return false;
    }
}