blob: 4e1dc80e1cc51005a4b5d1a087cce2bd6e2217fe [file] [log] [blame]
Cameron Nealeff1da6f2015-08-18 14:44:20 -07001/*
2 * Copyright (C) 2015 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 android.assist.testapp;
18
19import android.app.Activity;
20import android.content.Intent;
21import android.os.Bundle;
22import android.util.Log;
23
24public class LifecycleActivity extends Activity {
25 private static final String TAG = "LifecycleActivity";
26
27 @Override
28 public void onCreate(Bundle savedInstanceState) {
29 super.onCreate(savedInstanceState);
30 Log.i(TAG, "LifecycleActivity created");
31 }
32
33 @Override
34 protected void onResume() {
35 super.onResume();
36 Log.i(TAG, "Activity has resumed");
37 sendBroadcast(new Intent("android.intent.action.lifecycle_hasResumed"));
38 }
39
40 @Override
41 protected void onPause() {
42 super.onPause();
43 Log.i(TAG, "activity was paused");
44 sendBroadcast(new Intent("android.intent.action.lifecycle_onpause"));
45 }
46
47 @Override
48 protected void onStop() {
49 super.onStop();
50 Log.i(TAG, "activity was stopped");
51 sendBroadcast(new Intent("android.intent.action.lifecycle_onstop"));
52 }
53
54 @Override
55 protected void onDestroy() {
56 super.onDestroy();
57 Log.i(TAG, "activity was destroyed");
58 sendBroadcast(new Intent("android.intent.action.lifecycle_ondestroy"));
59 }
60}