I have already done the layout for portrait mode and created the layout-land folder and pasted all the xml files I already have to be able to adjust. From what I read, just do this but it is not working, I removed several components from one of the test screens and it remains the same in both modes.
landscape xml:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
style="@style/estiloTela"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="AAAAAAAAAAA"
android:textColor="@color/primary_text"
android:textSize="15dp" />
</LinearLayout>
</ScrollView>