Да, вы можете создать его, как ...
RelativeLayout rMain = (RelativeLayout)findviewById(R.id.mainlayout);
rMain.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//here you can do your code on click main....
}
});
main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainlayout"
android:orientation="vertical" >
<!-Any view is here->
<Button/>
</RelativeLayout>