列表视图并发症

ListView Complications

因为每个选项卡中的信息可能会根据屏幕尺寸显示不出来,所以我添加了一个滚动视图。列表视图可以很好地显示来自数据库的信息,但它不会散布在屏幕上。它只占用屏幕的一小部分,我只能滚动那一小部分。如果我有 2 组信息,我希望看到两行,但我只看到一行,我可以在其中滚动以查看第二组信息。但是,当我删除滚动视图时,我的列表视图会像预期的那样显示,但其他选项卡会受到影响,因为我无法滚动查看其他字段。 下面是我的主要 activity:

<TabHost
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/tabHost">


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></TabWidget>

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/scrollView"
            android:fillViewport="true">

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">

            <!--Overview Tab Starts-->


            <LinearLayout
                android:id="@+id/overviewTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical">

                <ListView
                    android:id="@+id/displayListView"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content" />

            </LinearLayout>


            <!--Overview Tab ends-->

            <!--Base Data Tab starts-->

                    <LinearLayout
                        android:id="@+id/baseDataTab"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"
                        android:orientation="vertical"
                        android:padding="15dp">

                        //the needed views go here//

                    </LinearLayout>

            <!--Base Data Tab ends-->

            <!--Task Tab starts-->

                <LinearLayout
                    android:id="@+id/taskTab"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:orientation="vertical"
                    android:padding="15dp">

                    //the needed views go here//

                </LinearLayout>

            <!--Task Tab ends-->

            <!--Survey Tab starts-->

                <LinearLayout
                    android:id="@+id/surveyTab"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:orientation="vertical"
                    android:padding="15dp">

                    //the needed views go here//

                </LinearLayout>


            <!--Survey Tab ends-->

        </FrameLayout>

        </ScrollView>
    </LinearLayout>
</TabHost>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabHost"
android:layout_width="match_parent"
android:layout_height="fill_parent" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </TabWidget>

    <ScrollView
        android:id="@+id/scrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true" >

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

            <!-- Overview Tab Starts -->

            <LinearLayout
                android:id="@+id/overviewTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical" >

                <ListView
                    android:id="@+id/displayListView"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content" />
            </LinearLayout>

            <!-- Overview Tab ends -->


            <!-- Base Data Tab starts -->

            <LinearLayout
                android:id="@+id/baseDataTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="15dp" >
            </LinearLayout>

            <!-- Base Data Tab ends -->


            <!-- Task Tab starts -->

            <LinearLayout
                android:id="@+id/taskTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="15dp" >
            </LinearLayout>

            <!-- Task Tab ends -->


            <!-- Survey Tab starts -->

            <LinearLayout
                android:id="@+id/surveyTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="15dp" >
            </LinearLayout>

            <!-- Survey Tab ends -->

        </FrameLayout>
    </ScrollView>
</LinearLayout>

您的 layout_height 和宽度属性存在一些问题。我更改了其中一些,这应该可以工作 ;-)