I am developing an android application and have created a tabbed layout for my application. I want to be able to create a layout on the first tab that looks like this:

I am just working on Tab 1 for now and the part with the A+ is supposed to just be a random pic that gets uploaded.
How would I go about making a layout like this?
What layout type should I use?
What would be the most efficient way of making this layout.
Use RelativeLayout. Set ImageView that will be below the TabWidget. Then set the TextView for Description to be toRight of your ImageView and below TabWidget, and the Evaluation TextView to be below the ImageView. Hope the words helped 🙂
Note that this will apply for both of your tabs, if you want to have different views per each tab, then try inflating.
Edit:
So in the Activty4TheSecondTab.class you set content layout like usual. Do this for both tabs.