provide the id attribute to your frameLayout, specifying it in the xml file as:
android:id="@+id/someID"
and in the code write the following:
FrameLayout layout = (FrameLayout)findViewById(R.id.someID);
layout.setVisibility(View.GONE); // you can use INVISIBLE also instead of GONE
source
share