Java tutorial
//package com.java2s; import android.app.Activity; import android.view.View; public class Main { public static View getRootViewGroup(Activity activity) { return activity.getWindow().getDecorView().findViewById(android.R.id.content); } }