Home | History | Annotate | Download | only in multi
      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 
     17 package foo.bar.multi;
     18 
     19 import android.app.Activity;
     20 import android.app.ActivityManager;
     21 import android.os.Bundle;
     22 import android.os.Process;
     23 import android.widget.TextView;
     24 import foo.bar.multi.parent.R;
     25 
     26 import java.util.List;
     27 
     28 public 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