1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.systemui;
18
19import android.animation.ObjectAnimator;
20import android.app.Activity;
21import android.content.ComponentName;
22import android.content.pm.PackageManager;
23import android.os.Handler;
24import android.util.Slog;
25import android.view.animation.DecelerateInterpolator;
26
27public class DessertCase extends Activity {
28    DessertCaseView mView;
29
30    @Override
31    public void onStart() {
32        super.onStart();
33
34        PackageManager pm = getPackageManager();
35        final ComponentName cn = new ComponentName(this, DessertCaseDream.class);
36        if (pm.getComponentEnabledSetting(cn) != PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
37            Slog.v("DessertCase", "ACHIEVEMENT UNLOCKED");
38            pm.setComponentEnabledSetting(cn,
39                    PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
40                    PackageManager.DONT_KILL_APP);
41        }
42
43        mView = new DessertCaseView(this);
44
45        DessertCaseView.RescalingContainer container = new DessertCaseView.RescalingContainer(this);
46
47        container.setView(mView);
48
49        setContentView(container);
50    }
51
52    @Override
53    public void onResume() {
54        super.onResume();
55        mView.postDelayed(new Runnable() {
56            public void run() {
57                mView.start();
58            }
59        }, 1000);
60    }
61
62    @Override
63    public void onPause() {
64        super.onPause();
65        mView.stop();
66    }
67}
68