我在Scroll视图中使用Expandableheightgrideview,
我的问题是当我尝试在gridview中添加内容时,内容未正确展开,当其高度存在时显示2滚动条(它假设是整个页面的一个常见滚动条).Bottom of the内容隐藏以查看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>
答案 0 :(得分:2)
答案在这里Problems with GridView inside ScrollView in android
我使用了gitHub的ExpandableHeightGridView.java并且正常工作 https://gist.github.com/sakurabird/6868765