I have the following layout for tabs:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:orientation="horizontal">
        <TabHost android:id="@+id/TabHost01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
                <TabWidget android:layout_width="wrap_content"
                        android:layout_height="wrap_content" 
android:id="@android:id/tabs"
android:orientation="vertical">
                </TabWidget>
                <FrameLayout android:layout_width="wrap_content"
                        android:layout_height="wrap_content" 
android:id="@android:id/
tabcontent">
                        <TextView android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:id="@+id/TempContent">
                        </TextView>
                </FrameLayout>
        </TabHost>
</LinearLayout>

Even though I set the orientation to vertical on the tabwidget, I
still get horizontal tabs. Is there a way to make the tabs vertical
(one below the other instead of side by side) ?

Rohit
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to