Hinzufügen von Scroll in Tabhost in Android

Ich habe einen Tab-Host, in dem ich mehr als 6 Schaltflächen habe. Der Bildschirm zeigt jedoch nur 3-4 Schaltflächen.

Es folgt der Code, den ich zusammen mit dem Bild verwende.

<?xml version="1.0" encoding="utf-8"?>
<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:background="#777777">

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        >
       <RelativeLayout
            android:id="@+id/layTab"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:background="@drawable/navbar_background"
            android:layout_alignParentBottom="true"
            android:layout_centerVertical="true"
            >
            <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            />
        </RelativeLayout>
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentTop="true"
            android:layout_above="@+id/layTab"/>


   </RelativeLayout>
</TabHost>

Die Frage ist, wie soll ich eine Schriftrolle hinzufügen, damit ich bis zu allen 6 Knöpfen oder jedem anderen Trick scrollen kann?

Freundliche Grüße

Antworten auf die Frage(1)

Ihre Antwort auf die Frage