1 /* 2 * Copyright (C) 2006 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 android.app.activity; 18 19 import android.content.Intent; 20 import android.os.Bundle; 21 import android.os.Handler; 22 import android.os.Process; 23 24 //device/apps/AndroidTests/src/com.android.unit_tests/activity/TestedScreen.java 25 26 public class RemoteSubActivityScreen extends SubActivityScreen { 27 Handler mHandler = new Handler(); 28 boolean mFirst = false; 29 RemoteSubActivityScreen()30 public RemoteSubActivityScreen() { 31 } 32 33 @Override onCreate(Bundle icicle)34 public void onCreate(Bundle icicle) { 35 // We are running in a remote process, so want to have the sub-activity 36 // sending the result back in the original process. 37 Intent intent = getIntent(); 38 intent.setClass(this, SubActivityScreen.class); 39 40 super.onCreate(icicle); 41 42 boolean kill = intent.getBooleanExtra("kill", false); 43 //Log.i("foo", "RemoteSubActivityScreen pid=" + Process.myPid() 44 // + " kill=" + kill); 45 46 if (kill) { 47 // After finishing initialization, kill the process! But only if 48 // this is the first time... 49 if (icicle == null) { 50 mHandler.post(new Runnable() { 51 public void run() { 52 handleBeforeStopping(); 53 Process.killProcess(Process.myPid()); 54 } 55 }); 56 } 57 } 58 } 59 } 60