is that your first activity on the screen or have you layered some above each other already?
try this:
findViewById(android.R.id.content).getRootView()
or just:
findViewById(android.R.id.content)
also depending on what you want try:
((ViewGroup)findViewById(android.R.id.content)).getChildAt(0)