android – scrollview中的可扩展高度GridView

我在Scroll视图中使用Expandableheightgrideview,

我的问题是当我尝试在gridview中添加内容时,内容未正确展开,当其高度存在时显示2个滚动条(它假设是整个页面的一个常见滚动条).内容的底部是隐藏要查看gride视图中的底部内容,需要向下滚动.

我使用了exGridView.setExpanded(true);但没有运气

    <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="25dp"
    android:background="@color/transparent"
    android:fillViewport="true" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <com.ExpandableHeightGridView
            android:id="@+id/result_list"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:horizontalSpacing="2dp"
            android:isScrollContainer="false"
            android:numColumns="1"
            android:stretchMode="columnWidth"
            android:verticalSpacing="2dp" >
        </com.ExpandableHeightGridView>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <LinearLayout
                android:id="@+id/start_task_layout"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                android:layout_gravity="right">

                <Button
                    android:id="@+id/homeBtn"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="0dip"
                    android:text="Home"
                    android:textSize="12dip" />
            </LinearLayout>

        </LinearLayout>
    </LinearLayout>

</ScrollView>

最佳答案 答案在这里
Problems with GridView inside ScrollView in android

我使用gitHub的ExpandableHeightGridView.java并且工作
https://gist.github.com/sakurabird/6868765

点赞