ScrollView Taboo

I create a page with tabhost (main) and each tabulator also has tabhost (child), but when I put the tabhost (child) inside the scrollview, it scrolls fine, but it starts from the bottom at the top of the tab, not at the top of the page, I also try

sView.fullScroll(ScrollView.FOCUS_UP); 

But the page always loads below the scales.

Its screenshot is like this when the MyDiet tab is open.

enter image description here

But I want it to be open like this

enter image description here

Offer me some idea. Thanks in advance.

+4
source share
1 answer

You should give a little top edge to the layout: -

enter image description here

as: -

<LinearLayout android: layout_marginTop = "5dp"

<P →

I think this will work. If there is still a problem, you should send your XML code.

0
source

All Articles