1/*
2 * Copyright (C) 2016 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 foo.bar.multi;
18
19import android.app.Activity;
20import android.app.ActivityManager;
21import android.os.Bundle;
22import android.os.Process;
23import android.widget.TextView;
24import foo.bar.multi.parent.R;
25
26import java.util.List;
27
28public class MyActivity extends Activity {
29    @Override
30    protected void onCreate(Bundle savedInstanceState) {
31        super.onCreate(savedInstanceState);
32
33        setContentView(R.layout.my_activity);
34
35        String processName = null;
36        ActivityManager activityManager = getSystemService(ActivityManager.class);
37        List<ActivityManager.RunningAppProcessInfo> runningProcesses = activityManager.getRunningAppProcesses();
38        for (ActivityManager.RunningAppProcessInfo runningProcess : runningProcesses) {
39            if (runningProcess.uid == Process.myUid()) {
40                processName = runningProcess.processName;
41                break;
42            }
43        }
44
45        TextView title = (TextView) findViewById(foo.bar.multi.parent.R.id.text);
46        title.setText("Process: " + processName);
47    }
48}
49