Search code examples
androidandroid-fragmentsandroid-tabs

Horizontal Scrollable Tabs Using FragmentTabHost In A Class That Extends Fragment


I am using a class that extends Fragment and not FragmentActivity and I cannot seem to make horizontal scroll to work. I first used a layout as simple as the first code below and it works perfectly (without the scroll of course). I decided to put a horizontal scroll because when my tab reaches 6, the text is so hard to read and when the text is too long, the complete text is not written. I tried to use the layout of other people that said "This works!". Please refer to the second code below; the third code is my fragment class. Thank you!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

The layout that other people said "It works"

<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <HorizontalScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fillViewport="true"
            android:scrollbars="none" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom" />

        </HorizontalScrollView>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />
    </LinearLayout>

</android.support.v4.app.FragmentTabHost>

Lastly, my Fragment class. Maybe I'm missing something out?

public class AlarmTab extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        FragmentTabHost tabHost;
        tabHost = new FragmentTabHost(getActivity());
        tabHost.setup(getActivity(), getChildFragmentManager(), R.layout.alarm_tab);


        for(int i=0; i<SmashDeviceData.get_instance().devices.size(); i++) {
            Bundle bundle = new Bundle();
            bundle.putInt("Arg for Frag" + i, 1);
            tabHost.addTab(tabHost.newTabSpec("Tab"+i).setIndicator(SmashDeviceData.get_instance().devices.get(i).deviceName), AlarmActivity.class, bundle);
        }
            return tabHost;
    }


    public static Fragment newInstance() {
        Fragment fragment = new AlarmTab();
        return fragment;
    }
}

Solution

  • try the below

    for xml

    <android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:orientation="vertical" >
    
    
                <HorizontalScrollView
                    android:id="@+id/horizontalScrollView"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@color/tabsColor"
                    android:scrollbars="none" >
    
                    <TabWidget
                        android:id="@android:id/tabs"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:background="@color/tabsColor"
                        android:gravity="center_horizontal" />
                </HorizontalScrollView>
    
            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </LinearLayout>
    
    </android.support.v4.app.FragmentTabHost>
    

    for your fragment

    public class HomeFragment extends Fragment {
    
        private FragmentTabHost mTabHost;
    
        TabWidget widget;
        HorizontalScrollView hs;
    
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView = inflater.inflate(R.layout.fragment_home, container,
                    false);
    
            initView(rootView);
    
            return rootView;
        }
    
    
        private void initView(View rootView) {
            mTabHost = (FragmentTabHost) rootView
                    .findViewById(android.R.id.tabhost);
    
            widget = (TabWidget) rootView.findViewById(android.R.id.tabs);
            hs = (HorizontalScrollView) rootView
                    .findViewById(R.id.horizontalScrollView);
    
    
            mTabHost.setup(getActivity(), getChildFragmentManager(),
                    android.R.id.tabcontent);
    }
    
    }