blob: a96f024451fd1a675928deca9852f6acce09aa8e [file] [log] [blame]
Daniel Sandlera30b70352013-09-16 10:16:49 -04001/*
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.app.Activity;
20import android.content.ComponentName;
21import android.content.pm.PackageManager;
22import android.util.Slog;
23
24public class DessertCase extends Activity {
Daniel Sandler8475a742013-09-26 00:24:57 -040025 DessertCaseView mView;
Daniel Sandlera30b70352013-09-16 10:16:49 -040026
27 @Override
28 public void onStart() {
29 super.onStart();
30
Daniel Sandlera30b70352013-09-16 10:16:49 -040031 PackageManager pm = getPackageManager();
Daniel Sandler8475a742013-09-26 00:24:57 -040032 final ComponentName cn = new ComponentName(this, DessertCaseDream.class);
33 if (pm.getComponentEnabledSetting(cn) != PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
34 Slog.v("DessertCase", "ACHIEVEMENT UNLOCKED");
35 pm.setComponentEnabledSetting(cn,
Daniel Sandler5c6a7812013-11-12 21:50:18 -050036 PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
37 PackageManager.DONT_KILL_APP);
Daniel Sandler8475a742013-09-26 00:24:57 -040038 }
Daniel Sandlera30b70352013-09-16 10:16:49 -040039
Daniel Sandler8475a742013-09-26 00:24:57 -040040 mView = new DessertCaseView(this);
41
42 DessertCaseView.RescalingContainer container = new DessertCaseView.RescalingContainer(this);
43
44 container.setView(mView);
45
46 setContentView(container);
47 }
48
49 @Override
50 public void onResume() {
51 super.onResume();
52 mView.postDelayed(new Runnable() {
53 public void run() {
54 mView.start();
55 }
56 }, 1000);
57 }
58
59 @Override
60 public void onPause() {
61 super.onPause();
62 mView.stop();
Daniel Sandlera30b70352013-09-16 10:16:49 -040063 }
64}