• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 package com.android.systemui;
18 
19 import android.animation.ObjectAnimator;
20 import android.app.Activity;
21 import android.content.ComponentName;
22 import android.content.pm.PackageManager;
23 import android.os.Handler;
24 import android.util.Slog;
25 import android.view.animation.DecelerateInterpolator;
26 
27 public class DessertCase extends Activity {
28     DessertCaseView mView;
29 
30     @Override
onStart()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
onResume()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
onPause()63     public void onPause() {
64         super.onPause();
65         mView.stop();
66     }
67 }
68