Tabhost scroll down

I used the tabhost tutorial to get started with the Tabhost control.

After some conversation, I wanted to make a scrollable taboo, which I understood.

Now I want tabhost to be at the bottom of the display, which just doesn't work for me.

Switch to Relative Layout, which was proposed here: iPhone-like tab

My code is:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:scrollbars="horizontal" android:isScrollContainer="true">
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:layout_alignParentBottom="true">
    <RelativeLayout android:layout_height="fill_parent"
        android:layout_width="fill_parent">
        <HorizontalScrollView android:layout_width="fill_parent"
            android:layout_height="fill_parent" android:scrollbars="none"
            android:layout_alignParentBottom="true">
            <TabWidget android:id="@android:id/tabs"
                android:layout_alignParentBottom="true" android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
        </HorizontalScrollView>
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:padding="2dp" />
    </RelativeLayout>
</TabHost>

I need a hint why it doesn't work / how it will work. I tried with relative layout and layout_alignParentBottom="true"now it is there several times (in HorizontalScrollView and TabWidget)

+3
source share
2 answers

Thanks to Arve leading me to “user controls”, I found a promising project:

https://github.com/honcheng/ScrollableTabHost-for-Android

, , tabhost, :)

+3

, : http://code.google.com/p/androidtabs/

:

- Android Tab TabWidget, . , /.

EDIT: , .

+1

Source: https://habr.com/ru/post/1793471/


All Articles