3

我正在使用这个ExpandableHeightGridView类,其中GridView“据说”延伸到内容的高度,因为我将它放在ScrollView. 如果我的项目是完整的,这很好用,GridView但是由于我的GridView项目是动态的,所以它的项目数量并不总是相同,现在的问题是如果我的GridView项目较少,它的高度不会包裹到内容高度但有一个空间空白行。我不明白为什么它分配那个空白行。

这是布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SecondActivity" >

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

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

        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:text="@string/hello_world" />

        <com.example.ExpandableHeightGridView
            android:id="@+id/gridview_module"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:horizontalSpacing="20dp"
            android:isScrollContainer="false"
            android:numColumns="3"
            android:stretchMode="columnWidth"
            android:verticalSpacing="10dp" />

        <Button
            android:id="@+id/dial_phone"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:onClick="dialPhone"
            android:text="Dial Phone" />
    </LinearLayout>
</ScrollView>

我将 GridView 的权重分配为 1,其他的为 0。我说对了吗?

4

2 回答 2

2

尝试在您的活动中添加这个。

ExpandableHeightGridView exGridView;

exGridView = (ExpandableHeightGridView) findViewById(R.id.myId);
exGridView .setExpanded(true);

我基于你的链接

于 2013-09-23T02:41:09.093 回答
0

当你想给 layout_weight 时,请确保 layout_height 为 0dp。不要同时设置 layout_height 和 layout_weight。希望对您有所帮助。

还要从滚动视图中删除这个标签 android:fillViewport="true"。您实际上是在通过将 fillViewport 设置为 true 来要求滚动视图扩展网格视图是否具有较少的项目。如果您删除此标签,则 gridview 将换行到其内容,并且行下方不会有额外的空间。

于 2013-11-01T10:03:16.677 回答