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 回答