I followed the instructions to add the landscape layout view to GeoQuiz; now the questions are not visible. Below are the steps I took:
I copied the activity_quiz.xml and content_quiz.xml files from "layout" to the "land-layout" folder (in project view)
I updated the landscape content_quiz.xml file from linearLayout to frameLayout per the instructions
Now the questions have disappeared from both portrait and landscape layout in Android Studio.
The weird things is when I run the app on my Android phone I can see the questions in portrait view only. When I rotate the device to landscape the questions are not visible.
I would appreciate any help anyone can provide. Thank you for your assistance.
Possibly you do not want to use FrameLayout for landscape.
try to work out a way to use LinearLayout and RelativeLayout and see if you see the questions.
If you want to become android coder these are the most 3 used layout.
FrameLayout is usually used for Fragments, not to maintain ChildViews as you are doing.