0

我们试图在垂直方向的屏幕右侧有一个 Tabwidget。但是将选项卡的大小调整为包含选项卡的布局的长度时会出现问题。

我们也找不到从片段代码中的视图和布局获取大小的方法。

XML 和图形布局视图附在下面。

 <?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="match_parent"
        android:layout_height="match_parent" >
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal"
            >
        <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1" >
            <LinearLayout
                    android:id="@+id/all"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    >
                <ListView
                        android:id="@+id/listView1"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:clipToPadding="false" >
                </ListView>
            </LinearLayout>
            <LinearLayout
                    android:id="@+id/record"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                     >
                <TextView
                        android:id="@+id/tabtxt2"
                        android:layout_width="wrap_content"
                        android:layout_height="80dp"
                        android:layout_gravity="center_horizontal"
                        android:text="Tab 2 Content Jehaw!" >
                </TextView>
                <ImageView android:id="@+id/journal_image"
                           android:contentDescription="Journal"
                           android:src="@drawable/ic_launcher"
                           android:layout_width="wrap_content"
                           android:layout_height="wrap_content"
                           android:layout_gravity="center_horizontal|center_vertical" >
                </ImageView>
            </LinearLayout>
            <LinearLayout
                    android:id="@+id/history"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                     >
                <TextView
                        android:id="@+id/tabtxt3"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:text="Tab 3 Content Jehaw!" >
                </TextView>
            </LinearLayout>
        </FrameLayout>

    <LinearLayout android:id="@+id/tabs_layout"
                  android:layout_width="100dip"
                  android:layout_height="match_parent"
                  android:layout_weight="1" >
        <TabWidget android:id="@android:id/tabs"
                   android:layout_height="match_parent"
                   android:layout_width="wrap_content"
                   android:divider="@color/green"
                   android:rotation="90"
                   android:layout_gravity="center_vertical"
                >
        </TabWidget>
    </LinearLayout>
    </LinearLayout>
</TabHost>

布局
选项卡的大小应拉伸以填充垂直方向的所有白色区域(布局)

4

1 回答 1

0

TabWidget 已硬编码 setOrientation(LinearLayout.HORIZONTAL); 在 TabWidget init() 方法中,TabHost 不支持方向属性,选项卡只能水平使用。

于 2013-10-07T13:27:42.513 回答