Question

J'ai un fragmentTabhost dans ma mise en page de fragmentation.

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/llDetector"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@+id/realtabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <android.support.v4.app.FragmentTabHost
            android:id="@android:id/tabhost"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
    <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="0" />
        </android.support.v4.app.FragmentTabHost>

    </LinearLayout>

Entrez la description de l'image ici

Ça va bien, mais je veux que mon tabistration soit au sommet du tabwidget.Comment puis-je atteindre ça?Merci d'avance!

Était-ce utile?

La solution

ok je l'ai fait mon chemin!

Ce que j'ai fait est de gonfler la mise en page de mon tabwidget et de l'ajouter à mon fragmenttabhost,

comme ceci:

View vTab = LayoutInflater.from(this).inflate(R.layout.tab_icon,    null, false);
mainTabhost.addTab(mainTabhost.newTabSpec("tab1").setIndicator(vTab),   Fragment_Sample.class, null);

et sur mon fichier tab_icon xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="3dp"
        android:background="@drawable/tab_icon_selector_inverse"
        android:textColor="@color/white" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/tab_icon_selector"
        android:drawableTop="@drawable/ic_icons"
        android:gravity="center"
        android:paddingBottom="5dp"
        android:paddingTop="5dp"
        android:text="@string/static_tab_whats_up"
        android:textColor="@color/white"
        android:textSize="11sp" />

</LinearLayout>

Si quelqu'un a aussi besoin de cela.Cela sera utile.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top