比如:
table1    table2     table3
----------------------------------要改成:table1  |
        |  
table2  |
        |
table3  |  
        |
        |
        |

解决方案 »

  1.   

    自己写个吧
    如果不想写个可移植的组件的话 不是很麻烦
    主要要考虑转屏 和 menu
      

  2.   

    tabActivity也是继承ActivityGroup的,我个人更偏向于用activityGroup做tab,
    不知道其他高人有更好的想法没。
      

  3.   

    使用activityGroup来仿写tab
    仿照这篇文章写一个就行了http://blog.csdn.net/hellogv/article/details/6057174
      

  4.   

    在TabActivity派生类的onPostCreate里面把content view改成自己的,本来是这样的布局:<TabHost
        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:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">        <TabWidget
                android:id="@android:id/tabs"
                android:orientation="horizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="0"/>        <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="0dip"
                android:layout_weight="1"/>    </LinearLayout>
    </TabHost>
    把TabWidget改成纵向的,和FrameLayout水平形成两列。
    可以尝试一下。
      

  5.   

    在布局文件TabHost中不是有一个android:layout_gravity?这个可以设置位置啊.还有就是可以设置水平和垂直啊