I would like to hide only a few elements on orientation change (LANDSCAPE). Where do I put this?
Button bt0 = (Button) findViewById(R.id.button0);
bt0.setVisibility(bt0.GONE);
And then, make them comeback on PORTRAIT. They are already defined onCreate.