0

タブ内のレイアウトを開くと、正確にタブコンテンツで、レイアウトが親に適合せず、画面に完全に表示されないという問題があります。この問題を制御する方法はありますか? これを解決するために何をすべきかわかりません。

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="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFF">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <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="fill_parent"
            android:layout_height="fill_parent"/>
    </LinearLayout>
</TabHost>

ありがとう。

4

2 に答える 2

1

XMLで何をしたかを表示する必要があります。親レイアウトの高さを「Fill_parent」に設定し、残りの部分については、親の塗りつぶし、コンテンツの折り返しのいずれかを使用できます。

于 2012-05-17T08:50:04.960 に答える
0

「Fill_parent」で高さと幅を変更するだけです。そして、やりたいことを手に入れます。

于 2012-05-17T09:38:27.703 に答える