Hi,
My app works fine and no errors in portrait view but I need Scroll the screen in Landscape view.
My XML File seems like this:
So, I'm not getting make Scroll works in LandScape view or when have too many components in Portrait view.
Remembering that code is working fine, but I need implement the scroll with ViewPager.
Thanks
My app works fine and no errors in portrait view but I need Scroll the screen in Landscape view.
My XML File seems like this:
HTML:
<ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout>
<com.google.android.material.tabs.TabItem /> // TabItem 1
<com.google.android.material.tabs.TabItem /> // TabItem 2
</com.google.android.material.tabs.TabLayout>
<androidx.viewpager.widget.ViewPager /> //ViewPager Without TabLayout and all basic configurations
</LinearLayout>
</ScrolView>
So, I'm not getting make Scroll works in LandScape view or when have too many components in Portrait view.
Remembering that code is working fine, but I need implement the scroll with ViewPager.
Thanks